vs code在终端跑vue cli的npm run serve时,背景颜色高亮如何去除

新手上路,请多包涵

clipboard.png
如何去除这个蓝色背景

阅读 3.8k
1 个回答

code->首选项->设置->调试在这里找一下设置样式。
clipboard.png
我感觉应该在settings.json文件下,你对应的找一下。

{
    "workbench.colorTheme": "Eva Light Bold",
    "window.zoomLevel": 0,
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    "typescript.format.insertSpaceBeforeFunctionParenthesis": true,
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    "workbench.editor.showTabs": false,
    "git.autofetch": true,
    "editor.fontSize": 14,
    "prettier.eslintIntegration": true,
    "prettier.singleQuote": true,
    "prettier.tslintIntegration": true,
    "files.associations": {
        "*.wxml": "vue-html"
    },
    "terminal.integrated.rendererType": "dom",
    "explorer.confirmDragAndDrop": false,
    "[javascript]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    },
    "[html]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    }
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进