export default {
name: 'systemdepartment',
components: {
saveDialog
},
data() {
return {
dialog: {
save: false
},
apiObj: this.$API.department.list,
selection: [],
search: {
keyword: null
},
treeProps:{ children: "Children" }
}
},
以上是element 框架,tree 显示页面,vue 2.0 会有一个create 函数,我也在看vue 3.0的教程,需要setup函数,但是这个页面都没有,没有看到生命周期函数 这是为什么呢?