this.$refs.tree is undefined.............

项目场景:

Vue + ElementUI 使用树形控件时,获取选中值报错 this.$refs.tree is undefined....


解决方案:

解决:加上 ref="tree"属性。

如:

 <el-tree
   :data="treeData"
   show-checkbox
   node-key="id"
   :default-expand-all="true"
   ref="tree"
   :props="defaultProps">
   </el-tree>

猜你喜欢

转载自blog.csdn.net/sanmuO/article/details/123496201
今日推荐