el-dialog中ref无效
-
从图中可以看出
el-dialog
中的组件是不会提前加载的。所以使用$refs会报错。 -
解决方案
- 使用
$nextTick
- 使用
this.$nextTick(() => {
console.log("ref ", this.$refs.tagTitleRef);
})
- 这样就能获取到了,如下图所示。
从图中可以看出el-dialog
中的组件是不会提前加载的。所以使用$refs会报错。
解决方案
$nextTick
this.$nextTick(() => {
console.log("ref ", this.$refs.tagTitleRef);
})