vue使用ref方法出现undefined处理
原因:页面未渲染完成,要等渲染完才能调用解决:this.$nextTick(_ => {})页面渲染完才调用,onShow里面也能用this.$nextTick(_ => {//ref="test"console.log(this.$refs.test.$el.style)})
·
原因:页面未渲染完成,要等渲染完才能调用
解决:this.$nextTick(_ => {}) 页面渲染完才调用,onShow里面也能用
this.$nextTick(_ => {
//ref="test"
console.log(this.$refs.test.$el.style)
})
更多推荐
已为社区贡献3条内容
所有评论(0)