tree-001-treeview.vue 485 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<template src="./tree-001-treeview.html"/>
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core';
import { TREE_001TreeBase } from './tree-001-treeview-base';
 

/**
 * treeexpbar_tree部件
 *
 * @export
 * @class TREE_001Tree
 * @extends {TREE_001TreeBase}
 */
@Component({
    components: {
         
    }
})
@VueLifeCycleProcessing()
export default class TREE_001Tree extends TREE_001TreeBase { }
</script>