美文网首页
2020-08-27 elementUI Dialog对话框使用

2020-08-27 elementUI Dialog对话框使用

作者: jinya2437 | 来源:发表于2020-08-27 14:51 被阅读0次

问题点:elementUI Dialog对话框引用组件refs报错undefined

解决办法

追加open函数,并且在open函数里面使用this.$nextTick钩子函数,具体看代码

<template>
  <el-dialog title="编辑考点" :visible.sync="dialogVisible" width="100%" @open="initFn">
    <tagComponent ref="tagComp" @successNoticeEvent="successFn" @errorNoticeEvent="errorFn"></tagComponent>
  </el-dialog>
</template>
initFn(questionId) {
    this.$nextTick(()=>{
      this.$refs.tagComp.initData(questionId)
  })
}

相关文章

网友评论

      本文标题:2020-08-27 elementUI Dialog对话框使用

      本文链接:https://www.haomeiwen.com/subject/envcsktx.html