2022-09-09 20:41:18 +00:00
< template >
2023-02-28 08:29:30 +00:00
< DocComponent title = "Vue InputSwitch Component" header = "InputSwitch" description = "InputSwitch is used to select a boolean value." :componentDocs ="docs" :apiDocs ="['InputSwitch']" / >
2022-09-09 20:41:18 +00:00
< / template >
< script >
2023-02-28 08:29:30 +00:00
import AccessibilityDoc from '@/doc/inputswitch/AccessibilityDoc.vue' ;
import BasicDoc from '@/doc/inputswitch/BasicDoc.vue' ;
import DisabledDoc from '@/doc/inputswitch/DisabledDoc.vue' ;
import ImportDoc from '@/doc/inputswitch/ImportDoc.vue' ;
import InvalidDoc from '@/doc/inputswitch/InvalidDoc.vue' ;
import PreselectionDoc from '@/doc/inputswitch/PreselectionDoc.vue' ;
import StyleDoc from '@/doc/inputswitch/StyleDoc.vue' ;
2023-03-17 13:05:14 +00:00
import VeeValidateDoc from '@/doc/inputswitch/form/VeeValidateDoc.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 : 'preselection' ,
label : 'Preselection' ,
component : PreselectionDoc
} ,
{
id : 'invalid' ,
label : 'Invalid' ,
component : InvalidDoc
} ,
{
id : 'disabled' ,
label : 'Disabled' ,
component : DisabledDoc
} ,
2023-03-17 13:05:14 +00:00
{
id : 'form' ,
label : 'Form' ,
description : 'Compatibility with popular Vue form libraries.' ,
children : [
{
id : 'vee-validate' ,
label : 'Vee Validate' ,
component : VeeValidateDoc
}
]
} ,
2023-02-28 08:29:30 +00:00
{
id : 'style' ,
label : 'Style' ,
component : StyleDoc
} ,
{
id : 'accessibility' ,
label : 'Accessibility' ,
component : AccessibilityDoc
}
]
2022-09-09 20:41:18 +00:00
} ;
}
} ;
< / script >