> 개발 도구 > VSCode > 본문

vscode는 어떻게 vue를 지원하나요?

풀어 주다: 2020-01-11 13:53:33
원래의
3595명이 탐색했습니다.

vscode는 어떻게 vue를 지원하나요?

필수 플러그인: 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 tutorial

위 내용은 vscode는 어떻게 vue를 지원하나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿