VS CODE 常用插件

841 阅读1分钟

1.超级炫酷的打字效果动画

blog.csdn.net/weixin_4236…

2.底部的动画

background

3.解决 vscode vue 格式化换行的问题

vscode 中 格式化 vue 及标签内属性如何不自动换行 在setting.json

  {
    "git.autofetch": true,
    "liveServer.settings.donotShowInfoMsg": true,
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "emmet.showSuggestionsAsSnippets": true,
    "editor.detectIndentation": true,
    "editor.parameterHints.cycle": true,
    "editor.parameterHints.enabled": true,
    "editor.parameterHints": true,
    "editor.quickSuggestions": {
        "other": true,
        "comments": true,
        "strings": false
    },
    "workbench.startupEditor": "newUntitledFile",
    "explorer.confirmDelete": false,
    "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
          "wrap_attributes": "auto" 
        },
        "prettyhtml": {
            "printWidth": 100,
            "singleQuote": false,
            "wrapAttributes": false,
            "sortAttributes": false
        }
      },
    "files.associations": {},
    "update.enableWindowsBackgroundUpdates": false,
    "window.zoomLevel": 0,
    "update.channel": "none",
    "powermode.enabled": true,
    "powermode.enableShake": false,
    "vetur.validation.template": false,
    "files.autoSave": "off"
}