2022-09-09 20:41:18 +00:00
|
|
|
<template>
|
2023-07-27 08:46:00 +00:00
|
|
|
<DocComponent
|
|
|
|
title="Vue MegaMenu Component"
|
|
|
|
header="MegaMenu"
|
|
|
|
description="MegaMenu is navigation component that displays submenus together."
|
|
|
|
:componentDocs="docs"
|
|
|
|
:apiDocs="['MegaMenu', 'MenuItem']"
|
|
|
|
:ptTabComponent="ptComponent"
|
|
|
|
:themingDocs="themingDoc"
|
|
|
|
/>
|
2022-09-09 20:41:18 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-02-28 08:29:30 +00:00
|
|
|
import AccessibilityDoc from '@/doc/megamenu/AccessibilityDoc';
|
|
|
|
import BasicDoc from '@/doc/megamenu/BasicDoc';
|
|
|
|
import ImportDoc from '@/doc/megamenu/ImportDoc';
|
2023-08-30 13:33:42 +00:00
|
|
|
import RouterDoc from '@/doc/megamenu/RouterDoc';
|
2023-02-28 08:29:30 +00:00
|
|
|
import TemplateDoc from '@/doc/megamenu/TemplateDoc';
|
|
|
|
import VerticalDoc from '@/doc/megamenu/VerticalDoc';
|
2023-04-27 15:28:36 +00:00
|
|
|
import PTComponent from '@/doc/megamenu/pt/index.vue';
|
2023-07-27 08:46:00 +00:00
|
|
|
import ThemingDoc from '@/doc/megamenu/theming/index.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
|
|
|
|
},
|
2022-09-09 20:41:18 +00:00
|
|
|
{
|
2023-02-28 08:29:30 +00:00
|
|
|
id: 'Vertical',
|
|
|
|
label: 'Vertical',
|
|
|
|
component: VerticalDoc
|
2022-09-09 20:41:18 +00:00
|
|
|
},
|
|
|
|
{
|
2023-02-28 08:29:30 +00:00
|
|
|
id: 'template',
|
|
|
|
label: 'Template',
|
|
|
|
component: TemplateDoc
|
2022-09-09 20:41:18 +00:00
|
|
|
},
|
2023-08-30 13:33:42 +00:00
|
|
|
{
|
|
|
|
id: 'router',
|
|
|
|
label: 'Router',
|
|
|
|
component: RouterDoc
|
|
|
|
},
|
2022-09-09 20:41:18 +00:00
|
|
|
{
|
2023-02-28 08:29:30 +00:00
|
|
|
id: 'accessibility',
|
|
|
|
label: 'Accessibility',
|
|
|
|
component: AccessibilityDoc
|
2022-09-09 20:41:18 +00:00
|
|
|
}
|
2023-04-27 15:28:36 +00:00
|
|
|
],
|
2023-07-27 08:46:00 +00:00
|
|
|
ptComponent: PTComponent,
|
|
|
|
themingDoc: ThemingDoc
|
2022-09-09 20:41:18 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|