필수 플러그인: ESLint, Prettier - 코드 포맷터, Vetur
사용자 설정 파일 열기:
// vscode默认启用了根据文件类型自动设置tabsize的选项 "editor.detectIndentation": false, // 重新设定tabsize "editor.tabSize": 2, // #每次保存的时候自动格式化 "editor.formatOnSave": true, // #让函数(名)和后面的括号之间加个空格 "javascript.format.insertSpaceBeforeFunctionParenthesis": true, // #让prettier使用eslint的代码格式进行校验 "prettier.eslintIntegration": true, // #去掉代码结尾的分号 "prettier.semi": false, // #使用带引号替代双引号 "prettier.singleQuote": true, // #每次保存的时候将代码按eslint格式进行修复 "eslint.autoFixOnSave": true, // 添加 vue 支持 "eslint.validate": [ "javascript", "javascriptreact", { "language": "vue", "autoFix": true } ], // #这个按用户自身习惯选择 "vetur.format.defaultFormatter.html": "js-beautify-html", "vetur.format.defaultFormatter.less": "prettier", "vetur.completion.autoImport": true, "vetur.format.defaultFormatter.js": "vscode-typescript", "vetur.format.defaultFormatterOptions": { "js-beautify-html": { "wrap_attributes": "force-aligned" } },#🎜🎜 #Save 코드는 eslint에 따라 자동으로 형식화됩니다.
Breakpoint 디버깅(Chrome용 디버거 설치 필요)
1 Vue CLI를 사용하는 경우 브라우저에 소스 코드를 표시합니다. 2, config/index.js에서 devtool 속성을 설정하고 업데이트하세요:devtool: 'source-map',Vue CLI 3을 사용하는 경우 vue.config.js에서 devtool 속성을 설정하고 업데이트하세요. :
module.exports = { configureWebpack: { devtool: 'source-map' } }2 vscode에서 활동 표시줄의 디버거 아이콘을 클릭하여 디버그 보기로 이동한 다음 기어 아이콘을 클릭하여 launch.json 파일을 구성하고 Chrome/Firefox: 실행을 선택합니다. 환경. 그런 다음 생성된 launch.json의 콘텐츠를 해당 구성으로 바꿉니다:
{ "version": "0.2.0", "configurations": [ { "type": "chrome", "request": "launch", "name": "vuejs: chrome", "url": "http://localhost:8080", "webRoot": "${workspaceFolder}/src", "breakOnLoad": true, "sourceMapPathOverrides": { "webpack:///src/*": "${webRoot}/*" } }, { "type": "firefox", "request": "launch", "name": "vuejs: firefox", "url": "http://localhost:8080", "webRoot": "${workspaceFolder}/src", "pathMappings": [{ "url": "webpack:///src/", "path": "${webRoot}/" }] } ] }권장 튜토리얼:
위 내용은 vscode는 어떻게 vue를 지원하나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!