vue属性props默认类型写法
Vue.component('my-component', {props: {// 基础的类型检查 (`null` 匹配任何类型)//单个类型propA: Number,// 多个可能的类型propB: [String, Number],// 必填的字符串propC: {type: String,...
·
Vue.component('my-component', {
props: {
// 基础的类型检查 (`null` 匹配任何类型)
//单个类型
propA: Number,
// 多个可能的类型
propB: [String, Number],
// 必填的字符串
propC: {
type: String,
required: true
},
//函数
propC: {
type:Function,
required: true
},
// 带有默认值的数字
propD: {
type: Number,
default: 100
},
//多个可能类型带默认值
propE: {
type: [String, Number],
default: 100
},
// 带有默认值的对象
propF: {
type: Object,
// 对象或数组且一定会从一个工厂函数返回默认值
default: function () {
return { message: 'hello' }
}
},
// 自定义验证函数
propG: {
validator: function (value) {
// 这个值必须匹配下列字符串中的一个
return ['success', 'warning', 'danger'].indexOf(value) !== -1
}
}
}
})
更多推荐
已为社区贡献12条内容
所有评论(0)