VUE页面报错Failed to compile. / 7:1 error Trailing spaces not allowed no-trailing-spaces

Failed to compile.

./src/router/index.js
Module Error (from ./node_modules/eslint-loader/index.js):

C:\gitConfigDemo\xy_basic_framework\src\router\index.js
  7:1  error  Trailing spaces not allowed  no-trailing-spaces   

✖ 1 problem (1 error, 0 warnings)
  1 error and 0 warnings potentially fixable with the `--fix` option.

VUE页面加载的时候出现了这个错误,错误来自router下index.js页面,报错提示大概说的是 不允许尾随空格,我找了一下原因,

index.js文件中 const routes = [] 的 [] 中不能有空格

你可能感兴趣的:(VUE,vue)