2022-09-09 20:41:18 +00:00
< template >
2023-02-28 08:29:30 +00:00
< DocComponent title = "Vue Tooltip Component" header = "Tooltip" description = "Tooltip directive provides advisory information for a component." :componentDocs ="docs" :apiDocs ="['Tooltip']" / >
2022-09-09 20:41:18 +00:00
< / template >
< script >
2023-02-28 08:29:30 +00:00
import AccessibilityDoc from '@/doc/tooltip/AccessibilityDoc' ;
import EventDoc from '@/doc/tooltip/EventDoc' ;
import ImportDoc from '@/doc/tooltip/ImportDoc' ;
import PositionDoc from '@/doc/tooltip/PositionDoc' ;
import StyleDoc from '@/doc/tooltip/StyleDoc' ;
import TemplateDoc from '@/doc/tooltip/TemplateDoc' ;
2022-09-09 20:41:18 +00:00
export default {
2023-02-28 08:29:30 +00:00
data ( ) {
return {
docs : [
{
id : 'import' ,
label : 'Import' ,
component : ImportDoc
} ,
{
id : 'position' ,
label : 'Position' ,
component : PositionDoc
} ,
{
id : 'event' ,
label : 'Event' ,
component : EventDoc
} ,
{
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 >