router-view组件中设计的父子组件传值

router-view 子组件发生变化导致父组件发生改变

1. router-view子组件->父组件传递

父组件中:


showMsg (val) {   //  val即为子组件传过来的值
  console.log(val)
}

子组件中:

this.$emit(‘getMessage’, “传给父组件的值”); //通过emit传递方法

2. router-view 父组件发生变化导致子组件发生改变

父组件中:

searchVal: '',  // data里面申明


子组件中:

props: ['searchVal'],

watch: {
      searchVal: function (val) {       
       console.log(val);   // 接收父组件的值
      }
    }

https://blog.csdn.net/m0_37852904/article/details/89204244

你可能感兴趣的:(vue)