📜  如何在 vue 中通过 $refs 获取 3 级表单数据 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:32.385000             🧑  作者: Mango

代码示例1
Vue.component('mycomponent', {
    template: "#mycomponent",
});

new Vue({
  el: '#app',
  mounted() {
    console.log(
      'Second level \'s value:',
      this.$refs.myFirstLevelRefName.$refs.mySecondLevelRefName.value
    )
  }
})