示例代码
父组件代码
<template>
<div class="hello">
<h1>{
{ msg }}</h1>
<son :message="message" :userInfo="userInfo" @handleChangeNum="getChangeNum"></son>
<h3>父组件显示 {
{count }} </h3>
</div>
</template>
<script>
import son from '@/components/son.vue';
export default {
name: 'HelloWorld',
components:{
son:son
},
props: {
msg: String
},
data(){
return {
message:"hello vue.js",