Vue学习(十九)Prop全攻略
注意
props属性默认值使用default()或者default返回
props: {value: {
type: String,
default: '',
},
labelInValue: {
type: Boolean,
default() {
return false;
},
},
placeholder: {
type: String,
default() {
return '选择游戏';
},
},
width: {
type: Number,
default() {
return 300;
},
}
},
参考
vue教程:Prop
以上是 Vue学习(十九)Prop全攻略 的全部内容, 来源链接: utcz.com/z/380716.html