64 lines
1.9 KiB
Vue
64 lines
1.9 KiB
Vue
|
<template>
|
||
|
<DocComponent
|
||
|
title="Vue ToggleButton Component"
|
||
|
header="ToggleButton"
|
||
|
description="ToggleButton is used to select a boolean value using a button."
|
||
|
:componentDocs="docs"
|
||
|
:apiDocs="['ToggleButton']"
|
||
|
:ptTabComponent="ptComponent"
|
||
|
:themingDocs="themingDoc"
|
||
|
/>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import AccessibilityDoc from '@/doc/togglebutton/AccessibilityDoc.vue';
|
||
|
import BasicDoc from '@/doc/togglebutton/BasicDoc.vue';
|
||
|
import CustomizedDoc from '@/doc/togglebutton/CustomizedDoc.vue';
|
||
|
import DisabledDoc from '@/doc/togglebutton/DisabledDoc.vue';
|
||
|
import ImportDoc from '@/doc/togglebutton/ImportDoc.vue';
|
||
|
import InvalidDoc from '@/doc/togglebutton/InvalidDoc.vue';
|
||
|
import PTComponent from '@/doc/togglebutton/pt/index.vue';
|
||
|
import ThemingDoc from '@/doc/togglebutton/theming/index.vue';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
docs: [
|
||
|
{
|
||
|
id: 'import',
|
||
|
label: 'Import',
|
||
|
component: ImportDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'basic',
|
||
|
label: 'Basic',
|
||
|
component: BasicDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'customized',
|
||
|
label: 'Customized',
|
||
|
component: CustomizedDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'invalid',
|
||
|
label: 'Invalid',
|
||
|
component: InvalidDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'disabled',
|
||
|
label: 'Disabled',
|
||
|
component: DisabledDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'accessibility',
|
||
|
label: 'Accessibility',
|
||
|
component: AccessibilityDoc
|
||
|
}
|
||
|
],
|
||
|
ptComponent: PTComponent,
|
||
|
themingDoc: ThemingDoc
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|