mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
Fixed #5621 - New Component: Tabs
This commit is contained in:
parent
53168665d4
commit
c80c3ad0ea
57 changed files with 3934 additions and 35 deletions
16
components/lib/tabpanels/BaseTabPanels.vue
Normal file
16
components/lib/tabpanels/BaseTabPanels.vue
Normal file
|
@ -0,0 +1,16 @@
|
|||
<script>
|
||||
import BaseComponent from 'primevue/basecomponent';
|
||||
import TabPanelsStyle from 'primevue/tabpanels/style';
|
||||
|
||||
export default {
|
||||
name: 'BaseTabPanels',
|
||||
extends: BaseComponent,
|
||||
props: {},
|
||||
style: TabPanelsStyle,
|
||||
provide() {
|
||||
return {
|
||||
$parentInstance: this
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue