You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create component with optional prop being an object and try to access its property
importVue,{PropType}from'vue';Vue.extend({props: {container: ObjectasPropType<{n: number}>,// or container: Number},mounted(){// should fail because this.container could be undefinedconsole.log(this.container.n);},});