Doc updates

This commit is contained in:
tugcekucukoglu 2024-02-07 15:08:53 +03:00
parent 2781cae180
commit e3e0eb14c6
13 changed files with 179 additions and 6 deletions

View file

@ -10,6 +10,7 @@
<script>
import StyledDoc from './StyledDoc.vue';
import TailwindDoc from './TailwindDoc.vue';
export default {
data() {
@ -19,6 +20,18 @@ export default {
id: 'theming.styled',
label: 'Styled',
component: StyledDoc
},
{
id: 'theming.unstyled',
label: 'Unstyled',
description: 'Theming is implemented with the pass through properties in unstyled mode.',
children: [
{
id: 'theming.tailwind',
label: 'Tailwind',
component: TailwindDoc
}
]
}
]
};