原因: eslint校验不通过
解决网站地址:https://stackoverflow.com/questions/53609457/eslint-parsing-error-unexpected-token-in-jsx/
在eslint中添加

"parserOptions": {
  "ecmaFeatures": {
    "jsx": true,
    "tsx": true
  }
}

注意parser使用

  "parser": "vue-eslint-parser",
  "parserOptions": {
    "ecmaFeatures": {
      "jsx": true,
      "tsx": true
    }
  },
  parserOptions: {
    parser:"babel-eslint",
    ecmaVersion: 2020,
    ecmaFeatures: {
      jsx: true,
      tsx: true
    }
  },

Demo9.jsx
报错 Parse errors in imported module ‘./Demo9’: Unexpected token <
vue无法简析jsx文件,没有安装jsx包
项目vite
在这里插入图片描述

Logo

前往低代码交流专区

更多推荐