VueJS access child component's data from parent

前端 未结 5 1410
心在旅途
心在旅途 2020-11-28 05:10

I\'m using the vue-cli scaffold for webpack

My Vue component structure/heirarchy currently looks like the following:

  • App
    • PDF Template
        <
5条回答
  •  猫巷女王i
    2020-11-28 05:31

    you can meke ref to child component and use it as this this.$refs.refComponentName.$data

    parent-component

    
    
     methods: {
      save() {
       let Data = this.$refs.nameOfRef.$data;
     }
    },
    

提交回复
热议问题