mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
Add theming tab
This commit is contained in:
parent
a9309e3b08
commit
9c03b03b99
6 changed files with 63 additions and 14 deletions
|
@ -1,5 +1,13 @@
|
|||
<template>
|
||||
<DocComponent title="Vue Checkbox Component" header="Checkbox" description="Checkbox is an extension to standard checkbox element with theming." :componentDocs="docs" :apiDocs="['Checkbox']" :ptTabComponent="ptComponent" />
|
||||
<DocComponent
|
||||
title="Vue Checkbox Component"
|
||||
header="Checkbox"
|
||||
description="Checkbox is an extension to standard checkbox element with theming."
|
||||
:componentDocs="docs"
|
||||
:apiDocs="['Checkbox']"
|
||||
:ptTabComponent="ptComponent"
|
||||
:themingDocs="themingDoc"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
@ -10,9 +18,9 @@ import DynamicDoc from '@/doc/checkbox/DynamicDoc';
|
|||
import GroupDoc from '@/doc/checkbox/GroupDoc';
|
||||
import ImportDoc from '@/doc/checkbox/ImportDoc';
|
||||
import InvalidDoc from '@/doc/checkbox/InvalidDoc';
|
||||
import StyleDoc from '@/doc/checkbox/StyleDoc';
|
||||
import VeeValidateDoc from '@/doc/checkbox/form/VeeValidateDoc';
|
||||
import PTComponent from '@/doc/checkbox/pt/index.vue';
|
||||
import ThemingDoc from '@/doc/checkbox/theming/index.vue';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
|
@ -60,18 +68,14 @@ export default {
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'style',
|
||||
label: 'Style',
|
||||
component: StyleDoc
|
||||
},
|
||||
{
|
||||
id: 'accessibility',
|
||||
label: 'Accessibility',
|
||||
component: AccessibilityDoc
|
||||
}
|
||||
],
|
||||
ptComponent: PTComponent
|
||||
ptComponent: PTComponent,
|
||||
themingDoc: ThemingDoc
|
||||
};
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue