在使用vue cli3的時候,遇到如下問題:
error: Parsing error: Unexpected token < at src\views\index.vue:1:1:
1 | <template>
| ^
2 | <div class="index">
3 | <router-view></router-view>
4 | <TabBar :data="tabbarData"></TabBar>
查閱了許多網(wǎng)站妻熊,都不能解決此問題风科,最后锰蓬,在
找到了辦法
打開你的 .eslintrc.js 文件,找到 parser
這是我的 .eslintrc.js
module.exports = {
rules: {
'no-console': 'off',
"parser": "vue-eslint-parser"彪笼,
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
}
},
}