2022-09-09 20:41:18 +00:00
< template >
2023-02-28 08:29:30 +00:00
< DocComponent title = "Vue ToggleButton Component" header = "ToggleButton" description = "ToggleButton is used to select a boolean value using a button." :componentDocs ="docs" :apiDocs ="['ToggleButton']" / >
2022-09-09 20:41:18 +00:00
< / template >
< script >
2023-02-28 08:29:30 +00:00
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 StyleDoc from '@/doc/togglebutton/StyleDoc.vue' ;
2022-09-09 20:41:18 +00:00
export default {
data ( ) {
return {
2023-02-28 08:29:30 +00:00
docs : [
{
id : 'import' ,
label : 'Import' ,
component : ImportDoc
} ,
{
id : 'basic' ,
label : 'Basic' ,
component : BasicDoc
} ,
{
id : 'customized' ,
label : 'Customized' ,
component : CustomizedDoc
} ,
{
id : 'disabled' ,
label : 'Disabled' ,
component : DisabledDoc
} ,
{
id : 'style' ,
label : 'Style' ,
component : StyleDoc
} ,
{
id : 'accessibility' ,
label : 'Accessibility' ,
component : AccessibilityDoc
}
]
2022-09-09 20:41:18 +00:00
} ;
}
} ;
< / script >