Fe-interview: [vue] prop验证的type类型有哪几种?

Created on 22 Jun 2019  ·  3Comments  ·  Source: haizlin/fe-interview

[vue] prop验证的type类型有哪几种?

vue

Most helpful comment

七种:

props:{
    title:String,
    likes: Number,
    isPublished: Boolean,
    commentIds: Array,
    author: Object,
    callback: Function,
    contactsPromise: Promise
}

All 3 comments

js中的数据类型

Number, String, Boolean, Array, Function, Object

七种:

props:{
    title:String,
    likes: Number,
    isPublished: Boolean,
    commentIds: Array,
    author: Object,
    callback: Function,
    contactsPromise: Promise
}
Was this page helpful?
0 / 5 - 0 ratings