办法1:进入首选项-设置-修改 User settings,

  // 前提是安装了vetur插件后
 
 "vetur.format.defaultFormatterOptions": {
    "js-beautify-html": {
      // force-aligned | force-expand-multiline
      "wrap_attributes": "force-aligned"
    },
    "prettyhtml": {
      "printWidth": 100,
      "singleQuote": false,
      "wrapAttributes": false,
      "sortAttributes": true
    },
    "prettier": {
        "semi": false,         // 是否自动加分号
        "singleQuote": true    // 是否格式化为单引号
    }
  },

 

方式2:user settings中

把"vetur.format.defaultFormatter.js": "prettier",

改为 "vetur.format.defaultFormatter.js": "vscode-typescript"

{
    "js-beautify-html": {
        // force-aligned | force-expand-multiline
        "wrap_attributes": "force-aligned"
    },
    "prettyhtml": {
        "printWidth": 100,
        "singleQuote": false,
        "wrapAttributes": false,
        "sortAttributes": true
    },
    "prettier": {
        "semi": false,
        "singleQuote": true
    },
    "vetur.format.defaultFormatter.js": "vscode-typescript"
}

 

Logo

前往低代码交流专区

更多推荐