1、表示的意思:子组件不能直接接收父组件的数据,需要用props才能让子组件接收父组件
2、接收数据的3种写法
//第一种:
props: ["msg2"],
//第二种
props:{
msg2:String
} ,
// 第三种
props: {
msg2: {
type: String, //写对应的类型
default: "默认值", //没有值的时候,默认
},
},
//第一种:
props: ["msg2"],
//第二种
props:{
msg2:String
} ,
// 第三种
props: {
msg2: {
type: String, //写对应的类型
default: "默认值", //没有值的时候,默认
},
},