vue 关闭代码规范性检测

在vue项目根目录下,创建 vue.config.js :

module.exports = {
  lintOnSave: false
};

完美解决!!

原文地址:https://www.cnblogs.com/yunyin/p/13516412.html