问题:
1 2 3 4 5 6 7 |
Module Warning (from ./node_modules/eslint-loader/index.js): error: Parsing error: Unexpected token < at src\views\Main.vue:1:1: > 1 | <template> | ^ 2 | <div id="main"> 3 | <router-view /> 4 | <bottom-nav /> |
解决:
一、方法1
-
- 安装
eslint-plugin-vue
依赖:npm i eslint-plugin-vue -D
- 在eslint配置文件中添加配置:
parser: “vue-eslint-parser”
- 安装