美文网首页Vue.js专区
vue ref 获取子组件属性值

vue ref 获取子组件属性值

作者: 出来混要还的 | 来源:发表于2019-09-16 09:59 被阅读0次

父引入、注册组件并调用组件

引入、注册

<script>
  ....
  import CustomerModal from './modules/CustomerModal'
  export default {
    name: "CustomerList",
    mixins:[JeecgListMixin],
    components: {
      JDate,
      CustomerModal,
      JDictSelectTag
    },
    ...
  }
</script>

调用组件

<customer-modal ref="modalForm" @ok="modalFormOk"></customer-modal>
// ref属性值指定了从$refs中获取组件的名称

调用子组件的函数

this.$refs.modalForm.add();

调用子组件的属性

this.$refs.modalForm.title = "新增";

相关文章

网友评论

    本文标题:vue ref 获取子组件属性值

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