摘要:
1. 路由的基本配置 const routes = [ { path: '/', name: 'Home', component: Home }, { path: '/about', name: 'About', // route level code-splitting // this gener 阅读全文
posted @ 2020-08-05 13:09
青山绿水ccc
阅读(148)
评论(0)
推荐(0)
摘要:
父子组件通信: 1. props / $emit, 通过父组件 :msg="msg" 绑定数据 子组件 props 接收数据 子组件 绑定 @click="msg" methods:{ msg(){ this.$emit('showMsg',data) } } 父组件 绑定 @showMsg="" 阅读全文
posted @ 2020-08-05 11:55
青山绿水ccc
阅读(119)
评论(0)
推荐(0)