赞
踩
只需两步
打开.eslintrc.js文件,注释下面的代码:
- module.exports = {
- root: true,
- env: {
- node: true
- },
- extends: [
- 'plugin:vue/essential',
- // '@vue/standard' //这里注释掉
- ],
- parserOptions: {
- parser: '@babel/eslint-parser'
- },
- rules: {
- 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'vue/multi-word-component-names': 0
- }
- }
打开vue.config.js文件,添加代码:
- const { defineConfig } = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- lintOnSave: false //添加这行
- })
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。