[Vuejs]-Vue warning message

4👍

As noted in the error message, you can fix the problem by running the following command:

$ npm run lint -- --fix

In the future, you can get VSCode to automatically fix these problems by installing the ESLint extension, and enabling the eslint.autoFixOnSave option as documented here: https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint

Leave a comment