Errors encountered in Vue

Fix vue startup issues (You may use special comments to disable some warnings)

Run: " npm run dev "
Error: As shown below, ""You may use special comments to disable some warnings."
Reason: Eslint's detection mechanism.
insert image description here

Two ways to solve

method one

Comment out the 43rd line of code in the build/webpack.base.conf.jsfile , as shown below, and then restartnpm run dev
insert image description here

Method Two

Change the value in line 26 of the config/index.jsfile to , as shown below, and restart .useEslinttruefalsenpm run dev
insert image description here

Guess you like

Origin blog.csdn.net/weiguang102/article/details/124304194