Vue3配置路由ERROR in [eslint]报错问题

2022-11-18 17:22:11 浏览数 (1)

 ERROR in [eslint]报错问题解决方式:

第一步:vue.config.js 文件配置

代码语言:javascript复制
const { defineConfig } = require('@vue/cli-service')

module.exports = defineConfig({

  transpileDependencies: true,

  lintOnSave: false

})

 第二步。win R cmd   再次运行 npm run serve

0 人点赞