29 lines
705 B
Vue
29 lines
705 B
Vue
<template>
|
|
<DocPTViewer :docs="docs">
|
|
<Tree v-model:selectionKeys="selectedKey" filter :value="nodes" selectionMode="checkbox" class="w-full md:w-[30rem]"></Tree>
|
|
</DocPTViewer>
|
|
</template>
|
|
|
|
<script>
|
|
import { getPTOptions } from '@/components/doc/helpers';
|
|
import { NodeService } from '@/service/NodeService';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
nodes: null,
|
|
selectedKey: null,
|
|
docs: [
|
|
{
|
|
data: getPTOptions('Tree'),
|
|
key: 'Tree'
|
|
}
|
|
]
|
|
};
|
|
},
|
|
mounted() {
|
|
NodeService.getTreeNodes().then((data) => (this.nodes = data));
|
|
}
|
|
};
|
|
</script>
|