Invalid prop: type check failed · Issue #2282 · vuejs/vue

<div id="example"> <my-component :title="title1" :number=12></my-component> </div> var MyComponent = Vue.extend({ template: '<div>{{title}}{{number}}</div>', props:{ title: String, number: Number }...