首先确保VS Code 安装了 Vetur 和 Eslint 插件。 

VS CODE :文件 =>首选项 => 设置   (有3个点 或 {} 这样的大括号,打开setting.json)

{
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    {
      "language": "vue",
      "autoFix": true
    },
    {
      "language": "html",
      "autoFix": true
    }
  ],
  "vetur.format.defaultFormatter.html": "js-beautify-html",
  "eslint.autoFixOnSave": true,
  "explorer.confirmDelete": false,
  "editor.tabSize": 2,
  "window.zoomLevel": 0,
  "vetur.format.defaultFormatterOptions": {
    "js-beautify-html": {
      "wrap_line_length": 120,
      "wrap_attributes": "auto",
      "end_with_newline": false
    }
  }
}

 

...

详解移步到:https://blog.csdn.net/u013304372/article/details/78927570

https://blog.csdn.net/AboyL/article/details/80616809

相关文章:

  • 2021-12-14
  • 2021-05-06
  • 2021-09-24
  • 2022-12-23
  • 2022-01-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-28
  • 2021-11-23
  • 2021-04-08
  • 2022-12-23
  • 2021-05-06
相关资源
相似解决方案