非常简单,相信大家一看就懂 复制到浏览器即可使用,注意别忘了引入vue哦 {{pmsg}} //父组件向子组件传值-基本使用 Vue.component('menu-item', { props: ['title', 'content'], data: function() { return { msg: '子组件本身的数据' } }, template: ` {{msg}} {{title}} {{content}} `