一、前提vue提供的数据间通讯方式有很多种,比较常用的有:1.父子组件使用props传值或者provide/inject
父组件中通过 this.$refs.子组件ref值.子组件方法;子组件中通过 this.$emit(‘父组件方法’)
2021-11-30