vuejs / Discussion

Vue.js discussion
166 stars 17 forks source link

Invalid prop: Expected `Basic type`, got Nulll. #1331

Open sofuxro opened 6 years ago

sofuxro commented 6 years ago

I have this

catalogText: { type: String,  required: true }

and get this error

Invalid prop: type check failed for prop "catalogText". Expected String, got Null.

even tho the docs says this

props: {
    // Basic type check (`null` matches any type)
   ...
}

Please do one of the following update the docs and remove that misleading text OR make it work as stated