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