2022-09-09 20:41:18 +00:00
< template >
2023-02-28 08:29:30 +00:00
< DocComponent title = "React Sidebar Component" header = "Sidebar" description = "Sidebar, also known as Drawer, is a container component displayed as an overlay." :componentDocs ="docs" :apiDocs ="['Sidebar']" / >
2022-09-09 20:41:18 +00:00
< / template >
< script >
2023-02-28 08:29:30 +00:00
import AccessibilityDoc from '@/doc/sidebar/AccessibilityDoc' ;
import BasicDoc from '@/doc/sidebar/BasicDoc' ;
import FullScreenDoc from '@/doc/sidebar/FullScreenDoc' ;
import ImportDoc from '@/doc/sidebar/ImportDoc' ;
import PositionDoc from '@/doc/sidebar/PositionDoc' ;
import SizeDoc from '@/doc/sidebar/SizeDoc' ;
import StyleDoc from '@/doc/sidebar/StyleDoc' ;
import TemplateDoc from '@/doc/sidebar/TemplateDoc' ;
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 : 'position' ,
label : 'Position' ,
component : PositionDoc
} ,
{
id : 'size' ,
label : 'Size' ,
component : SizeDoc
} ,
{
id : 'fullscreen' ,
label : 'Full Screen' ,
component : FullScreenDoc
} ,
{
id : 'template' ,
label : 'Template' ,
component : TemplateDoc
} ,
{
id : 'style' ,
label : 'Style' ,
component : StyleDoc
} ,
{
id : 'accessibility' ,
label : 'Accessibility' ,
component : AccessibilityDoc
}
]
2022-09-09 20:41:18 +00:00
} ;
}
} ;
< / script >