美文网首页
Parsing error: Unexpected token

Parsing error: Unexpected token

作者: Johnson23 | 来源:发表于2019-10-09 16:06 被阅读0次

    在使用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>
    

    查阅了许多网站,都不能解决此问题,最后,在

    https://stackoverflow.com/questions/53601579/parsing-error-unexpected-token-using-vuecli3-and-airbnb-eslint?r=SearchResults

    找到了办法

    打开你的 .eslintrc.js 文件,找到 parser

    这是我的 .eslintrc.js

    module.exports = {
        rules: {
            'no-console': 'off',
            "parser": "vue-eslint-parser",
            "parserOptions": {
               "ecmaVersion": 7,
               "sourceType": "module"
            }
        },
    }
    

    相关文章

      网友评论

          本文标题:Parsing error: Unexpected token

          本文链接:https://www.haomeiwen.com/subject/ucygpctx.html