Vue3 Parsing error: Unexpected token.

Vue3 Parsing error: Unexpected token._第1张图片

前要:今天项目开发用到vue3技术框架+TypeScript语法+vite打包技术…,但是配置vue-router是报错Parsing error: Unexpected token.!顺便记录一下解决不同语法下的交接方法!!!
前提条件: 安装eslint-plugin-vue依赖
vue-cli(推荐):

vue add @vue/cli-plugin-eslint

npm:

npm install --save-dev eslint eslint-plugin-vue

yarn:

yarn add -D eslint eslint-plugin-vue

版本要求:
Vue3 Parsing error: Unexpected token._第2张图片
vue3+js : .eslint.js
Vue3 Parsing error: Unexpected token._第3张图片
vue3+ts : .eslint.js
Vue3 Parsing error: Unexpected token._第4张图片
如果你想使用自定义解析器,比如@babel/eslint-parser或者@typescript-eslint/parser时,就必须使用parserOptions.parser选项,而不是parser选项,因为这个插件需要vue-eslint-parser解析​.vue文件,如果覆盖parser选项,此插件不起作用​!!!
Vue3 Parsing error: Unexpected token._第5张图片

你可能感兴趣的:(VUE.JS,JS,UniApp,javascript,typescript,vue.js)