Tree filter demo added

This commit is contained in:
tugcekucukoglu 2024-09-26 11:05:32 +03:00
parent c528842ede
commit 2d4f85a084
3 changed files with 112 additions and 1 deletions

View file

@ -10,6 +10,7 @@
<script>
import { NodeService } from '@/service/NodeService';
export default {
data() {
return {
@ -36,7 +37,7 @@ export default {
},
mounted() {
NodeService.getTreeNodes().then((data) => (this.nodes = data));
}
}
}
<\/script>
`,