扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
本文实例讲述了vuejs中父子组件之间通信方法。分享给大家供大家参考,具体如下:
成都创新互联公司主营马关网站建设的网络公司,主营网站建设方案,app软件开发,马关h5成都小程序开发搭建,马关网站营销推广欢迎马关等地区企业咨询
// Parent.vue
// Child.vuechild
{{ msg }}
// router/index.js import Vue from 'vue' import Router from 'vue-router' import HelloWorld from '@/components/HelloWorld' import Parent from '@/test/Parent' Vue.use(Router) export default new Router({ routes: [ { path: '/', name: 'HelloWorld', component: HelloWorld }, { path: '/parent', component: Parent } ] })
// Parent.vue
// Child.vuechild
{{ msg }}
参考:https://jingyan.baidu.com/article/455a99505b639da1662778e1.html
希望本文所述对大家vue.js程序设计有所帮助。
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流