2022-09-09 20:41:18 +00:00
|
|
|
<template>
|
2023-04-28 08:56:09 +00:00
|
|
|
<DocComponent
|
|
|
|
title="Vue Popover Component"
|
2024-04-18 14:22:30 +00:00
|
|
|
header="Popover"
|
|
|
|
description="Popover is a container component that can overlay other components on page."
|
2023-04-28 08:56:09 +00:00
|
|
|
:componentDocs="docs"
|
2024-04-18 14:22:30 +00:00
|
|
|
:apiDocs="['Popover']"
|
2023-04-28 08:56:09 +00:00
|
|
|
:ptTabComponent="ptComponent"
|
2023-07-27 09:42:08 +00:00
|
|
|
:themingDocs="themingDoc"
|
2023-04-28 08:56:09 +00:00
|
|
|
/>
|
2022-09-09 20:41:18 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-04-18 14:22:30 +00:00
|
|
|
import AccessibilityDoc from '@/doc/popover/AccessibilityDoc.vue';
|
|
|
|
import BasicDoc from '@/doc/popover/BasicDoc.vue';
|
|
|
|
import DataTableDoc from '@/doc/popover/DataTableDoc.vue';
|
|
|
|
import ImportDoc from '@/doc/popover/ImportDoc.vue';
|
|
|
|
import PTComponent from '@/doc/popover/pt/index.vue';
|
2024-08-29 21:43:40 +00:00
|
|
|
import SelectDataDoc from '@/doc/popover/SelectDataDoc.vue';
|
2024-04-18 14:22:30 +00:00
|
|
|
import ThemingDoc from '@/doc/popover/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
|
|
|
|
},
|
2024-08-29 21:43:40 +00:00
|
|
|
{
|
|
|
|
id: 'selectdata',
|
|
|
|
label: 'Select Data',
|
|
|
|
component: SelectDataDoc
|
|
|
|
},
|
2023-02-28 08:29:30 +00:00
|
|
|
{
|
2023-11-02 06:54:55 +00:00
|
|
|
id: 'datatable',
|
2023-02-28 08:29:30 +00:00
|
|
|
label: 'DataTable',
|
|
|
|
component: DataTableDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'accessibility',
|
|
|
|
label: 'Accessibility',
|
|
|
|
component: AccessibilityDoc
|
|
|
|
}
|
2023-04-28 08:56:09 +00:00
|
|
|
],
|
2023-07-27 09:42:08 +00:00
|
|
|
ptComponent: PTComponent,
|
|
|
|
themingDoc: ThemingDoc
|
2022-09-09 20:41:18 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|