vue项目报错:Expected space or tab after ‘//‘ in comment.(spaced-comment)

百度解决办法:禁用ESLINT
无论是vs或者idea,禁用之后,你会发现还是报错,根源是你需要让vue项目禁用ESLINT语法检测
方法:在项目根目录下新建 vue.config.js文件,在文件中添加下面代码块就可以及解决了

module.exports = {
  lintOnSave: false, // eslint-loader 是否在保存的时候检查
}

vue项目报错:Expected space or tab after ‘//‘ in comment.(spaced-comment)_第1张图片
并进行以下操作,就可以关闭该死的报错提示了

module.exports = {
    root: true,
    env: {
        node: true
    },
    extends: [
        'plugin:vue/essential',
        // '@vue/standard'
    ],
    parserOptions: {
        parser: 'babel-eslint'
    },
    rules: {
      'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
      'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
      "indent": ['off', 2],
      'semi': 0,
      "space-before-function-paren": 0
    }
}

vue项目报错:Expected space or tab after ‘//‘ in comment.(spaced-comment)_第2张图片

你可能感兴趣的:(BUG记录,vue.js)