2019年10月18日

摘要: 1.新建bus.js import Vue from 'vue' export default new Vue 2.在需要传值和接受值的vue文件中,各自引入bus.js import bus from '../util/bus' 3.定义传值的方法,使用bus.$emit('methodName' 阅读全文

posted @ 2019-10-18 22:06 猫头唔食鱼 阅读(3657) 评论(0) 推荐(0) 编辑

摘要: 1.this.$emit ,子传父 2.this.$children属性 this.$children返回的是数组 例子: 3.通过this.$refs获取组件 4.this.$parent获取父组件数据 this.$parent返回的是对象,this.$children返回的数组 例子: 阅读全文

posted @ 2019-10-18 18:58 猫头唔食鱼 阅读(26754) 评论(0) 推荐(1) 编辑

摘要: 1.新建vue.config.js文件(和package.json同一目录) 2.复制以下代码: 阅读全文

posted @ 2019-10-18 05:35 猫头唔食鱼 阅读(10560) 评论(0) 推荐(0) 编辑