美文网首页
VS Code的安装

VS Code的安装

作者: 清霆 | 来源:发表于2019-06-03 14:37 被阅读0次

1. 下载安装

https://code.visualstudio.com/

2. 配置中文

2.1 快捷键【Ctrl+Shift+P】调出安装面板

2.2 输入并选择【Configure Display Language】

3. 根据需要通过扩展【Ctrl+Shift+X】安装常用组件


vetur、Prettier - Code formatter、ESLint、Auto Close Tag、Auto Rename Tag

ESLint额外配置:

npm install eslint -g

npm install eslint-plugin-html -g

"eslint.validate": [

        "javascript",

        "javascriptreact",

        "html",

        "vue"

    ],

    "eslint.options": {

        "plugins": ["html"]

    }

相关文章

网友评论

      本文标题:VS Code的安装

      本文链接:https://www.haomeiwen.com/subject/kylcxctx.html