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
{{ message }}
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
It seems like vue-property-decorator (9.1.2) is not compatible with the upcoming [email protected].
At the moment I am getting the following errors when declaring Components
TS1238: Unable to resolve signature of class decorator when called as an expression.
This expression is not callable.
Type 'typeof import("C:/[redacted]/vue-ui/node_modules/vue-class-component/dist/vue-class-component")' has no call signatures.
33 | import { Vue, Component, Prop } from "vue-property-decorator";
34 |> 35 | @Component`| ^^^^^^^^^ 36 |export default class SearchField extends Vue {
I am also getting the following warnings in the terminal
export'default' (reexported as 'Component') was not found in'vue-class-component' (possible exports: Options, Vue, createDecorator, mixins, prop, setup)
It seems like
vue-property-decorator
(9.1.2) is not compatible with the upcoming[email protected]
.At the moment I am getting the following errors when declaring Components
It seems to be working with the following syntax
How it looked like originally
Further reading:
vuejs/vue-class-component#406
The text was updated successfully, but these errors were encountered: