美文网首页
2021-07-29 TypeError: this.$refs

2021-07-29 TypeError: this.$refs

作者: 半眼鱼 | 来源:发表于2021-07-29 18:23 被阅读0次

TypeError: this.$refs.tree.getCheckedNodes is not a function

tree组件在for循环中无法使用getCheckedNodes这个方法

<li v-for="item in 3">
<el-input placeholder="输入关键字进行过滤" v-model="filterText" @input="textCheckNode(filterText)"></el-input>
    <el-tree
        ref="tree"
        class="filter-tree"
        :props="defaultProps"
        :data="data2"
        default-expand-all
        show-checkbox
        :filter-node-method="filterNode">
    </el-tree>
</li>


因为生成了三个tree

解决方法:


image.png

相关文章

网友评论

      本文标题:2021-07-29 TypeError: this.$refs

      本文链接:https://www.haomeiwen.com/subject/kjrfvltx.html