60 lines
2.0 KiB
Vue
Executable File
60 lines
2.0 KiB
Vue
Executable File
<template>
|
|
<DocComponent title="Vue Organization Chart Component" header="OrganizationChart" description="OrganizationChart visualizes hierarchical organization data." :componentDocs="docs" :apiDocs="['OrganizationChart']" :ptTabComponent="ptComponent" />
|
|
</template>
|
|
|
|
<script>
|
|
import AccessibilityDoc from '@/doc/organizationchart/AccessibilityDoc';
|
|
import BasicDoc from '@/doc/organizationchart/BasicDoc';
|
|
import ColoredDoc from '@/doc/organizationchart/ColoredDoc';
|
|
import ImportDoc from '@/doc/organizationchart/ImportDoc';
|
|
import SelectionDoc from '@/doc/organizationchart/SelectionDoc';
|
|
import StyleDoc from '@/doc/organizationchart/StyleDoc';
|
|
import TemplateDoc from '@/doc/organizationchart/TemplateDoc';
|
|
import PTComponent from '@/doc/organizationchart/pt/index.vue';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
docs: [
|
|
{
|
|
id: 'import',
|
|
label: 'Import',
|
|
component: ImportDoc
|
|
},
|
|
{
|
|
id: 'basic',
|
|
label: 'Basic',
|
|
component: BasicDoc
|
|
},
|
|
{
|
|
id: 'template',
|
|
label: 'Template',
|
|
component: TemplateDoc
|
|
},
|
|
{
|
|
id: 'selection',
|
|
label: 'Selection',
|
|
component: SelectionDoc
|
|
},
|
|
{
|
|
id: 'colored',
|
|
label: 'Colored',
|
|
component: ColoredDoc
|
|
},
|
|
{
|
|
id: 'style',
|
|
label: 'Style',
|
|
component: StyleDoc
|
|
},
|
|
{
|
|
id: 'accessibility',
|
|
label: 'Accessibility',
|
|
component: AccessibilityDoc
|
|
}
|
|
],
|
|
ptComponent: PTComponent
|
|
};
|
|
}
|
|
};
|
|
</script>
|