-
Notifications
You must be signed in to change notification settings - Fork 433
Closed
vuejs/vue
#9173Labels
Description
Just create a new project with Vue CLI and you get a
35:1 Unable to resolve signature of class decorator when called as an expression.
Type '<VC extends VueClass<Vue>>(target: VC) => VC' is missing the following properties from type 'typeof HelloWorld': exte
nd, nextTick, set, delete, and 7 more.
33 | import { Component, Prop, Vue } from 'vue-property-decorator';
34 |
> 35 | @Component
| ^
36 | export default class HelloWorld extends Vue {
37 | @Prop() private msg!: string;
38 | }
This happens since the update of Vue and vue-template-compiler to version 2.5.18
. With 2.5.17
everything works.
plantain-00, zaiste, tottokotkd-q, LRstudentHU, millimoose and 26 more