We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resources: all-encompassing guide on how to do this vue-property-decorator docs vue-class-component docs - doesn't really cover typescript
The text was updated successfully, but these errors were encountered:
You need to change this:
@Prop({default: 'Example'}) exampleProp: string;
to this:
@Prop({default: 'Example'}) exampleProp!: string;
adding an exclamation point to the end of "exampleProp" to silence the compiler.
Source: kaorun343/vue-property-decorator#81
Sorry, something went wrong.
renamed some files, started #3 and #9
4ddcc34
workin on #9, #3, and #1
1c2ae9a
75318c6
d1e4eed
No branches or pull requests
Resources:
all-encompassing guide on how to do this
vue-property-decorator docs
vue-class-component docs - doesn't really cover typescript
The text was updated successfully, but these errors were encountered: