JSX提示Parsing error: Unexpected token <eslint | Parse errors in imported module ‘./Demo9‘: Unexpected
jsx在vue中配置出现问题
·
原因: 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
更多推荐
已为社区贡献8条内容
所有评论(0)