58 lines
1.7 KiB
Vue
Executable File
58 lines
1.7 KiB
Vue
Executable File
<template>
|
|
<DocComponent title="Vue Tooltip Directive" header="Tooltip" description="Tooltip directive provides advisory information for a component." :componentDocs="docs" :apiDocs="['Tooltip']" />
|
|
</template>
|
|
|
|
<script>
|
|
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';
|
|
import DelayDoc from '@/doc/tooltip/DelayDoc';
|
|
|
|
export default {
|
|
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: 'delay',
|
|
label: 'Delay',
|
|
component: DelayDoc
|
|
},
|
|
{
|
|
id: 'style',
|
|
label: 'Style',
|
|
component: StyleDoc
|
|
},
|
|
{
|
|
id: 'accessibility',
|
|
label: 'Accessibility',
|
|
component: AccessibilityDoc
|
|
}
|
|
]
|
|
};
|
|
}
|
|
};
|
|
</script>
|