vue组件中ref的用法
1/el-table中ref的用法:普通用法: ref=“refs” 查找时使用this.$refs.refs2/组件中ref的用法:<child ref="childRef"></child>查找时this.$refs.childRef找到的是子组件如果子组件里el-table不是唯一组件,this.$refs.chi
·
1/el-table中ref的用法:
普通用法: ref=“refs” 查找时使用this.$refs.refs
2/组件中ref的用法:
<child ref="childRef"></child>
查找时this.$refs.childRef找到的是子组件
如果子组件里el-table不是唯一组件,this.$refs.childRef.$children[0]找到table组件
更多推荐
已为社区贡献5条内容
所有评论(0)