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 Nov 8, 2021. It is now read-only.
When using the "vue-property-decorator" the following error occurs:
Parsing error: Using the export keyword between a decorator and a class is not allowed. Please use export @dec class instead.
Can be fixed by adding this to the .eslintrc.js parserOptions: { parserOptions: { ecmaFeatures: { legacyDecorators: true } } }
The text was updated successfully, but these errors were encountered:
When using the "vue-property-decorator" the following error occurs:
Parsing error: Using the export keyword between a decorator and a class is not allowed. Please use
export @dec class
instead.Can be fixed by adding this to the .eslintrc.js parserOptions:
{ parserOptions: { ecmaFeatures: { legacyDecorators: true } } }
The text was updated successfully, but these errors were encountered: