随笔分类 - 复习
摘要:main.js new Vue({ el:'#app', render: h => h(App), beforeCreate() { Vue.prototype.$bus = this //安装全局事件总线 }, }) 子组件 <button @click="sendStudentName">把学生
阅读全文
摘要:mixin.js export const hunhe = { methods: { showName(){ alert(this.name) } }, mounted() { console.log('你好啊!') }, } export const hunhe2 = { data() { ret
阅读全文