用tree組件時(shí)使用了節(jié)點(diǎn)過(guò)濾,整個(gè)組件用在循環(huán)中報(bào)錯(cuò)<li v-for="item in 3"> <el-input placeholder="輸入關(guān)鍵字進(jìn)行過(guò)濾" 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>
上述input框因?yàn)閏hange事件不生效百度input才生效
下面為改變輸入框時(shí)的方法
textCheckNode(value){
self.$refs.tree.filter(value)
},在調(diào)用時(shí)一輸入值就報(bào)改值is not a function另外如果我把for循環(huán)去掉就不會(huì)有問(wèn)題,但我是必須要循環(huán)的,請(qǐng)問(wèn)各位大佬有遇到過(guò)或者有解決辦法嗎?
elementUI中tree組件節(jié)點(diǎn)過(guò)濾功能用在循環(huán)中報(bào)錯(cuò)
慕運(yùn)維8079593
2018-07-23 19:18:59