tanlie cfd65c0c2b rename file 1 сар өмнө
..
public 08680fca1d hi 1 сар өмнө
src cfd65c0c2b rename file 1 сар өмнө
.browserslistrc 08680fca1d hi 1 сар өмнө
.editorconfig 08680fca1d hi 1 сар өмнө
.env.development 112707fe01 图片上传ok 1 сар өмнө
.env.production 08680fca1d hi 1 сар өмнө
.env.test 08680fca1d hi 1 сар өмнө
.eslintignore 08680fca1d hi 1 сар өмнө
.eslintrc.js 08680fca1d hi 1 сар өмнө
.gitignore 08680fca1d hi 1 сар өмнө
.prettierrc.json 08680fca1d hi 1 сар өмнө
README.md 08680fca1d hi 1 сар өмнө
babel.config.js 08680fca1d hi 1 сар өмнө
jsconfig.json 08680fca1d hi 1 сар өмнө
obfuscator.js 08680fca1d hi 1 сар өмнө
obfuscatorFiles.js 203286eb6c clean up code 1 сар өмнө
package.json 08680fca1d hi 1 сар өмнө
vue.config.js 9e3436519f clean up code 1 сар өмнө

README.md

school-recruit

统一 IDE

vscode

统一插件

Auto Close Tag
Auto Rename Tag
Bracket Pair Colorizer
HTML CSS Support
JavaScript (ES6) code snippets
Local History
Path Intellisense
Prettier - Code formatter
Project Manager
Todo Tree
Vetur
vue

统一风格配置文件

{
  // vscode默认启用了根据文件类型自动设置tabsize的选项
  "editor.detectIndentation": false,
  // 重新设定tabsize
  "editor.tabSize": 2,
  // #每次保存的时候自动格式化
  "editor.formatOnSave": true,
  "vetur.format.defaultFormatter.js": "vscode-typescript",
  "vetur.format.defaultFormatterOptions": {
    "js-beautify-html": {
      "wrap_attributes": "force-aligned"
    }
  },
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "files.autoSave": "afterDelay",
  "eslint.format.enable": true,
  "git.autofetch": true,
  "prettier.singleQuote": true,
  "explorer.confirmDelete": false,
  "local-history.daysLimit": 7,
  "editor.fontSize": 16,
  "editor.wordWrapColumn": 120,
  "vetur.format.defaultFormatter.html": "prettyhtml",
  "vetur.ignoreProjectWarning": true,
  "[vue]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "terminal.integrated.tabs.location": "left",
  "git.enableSmartCommit": true
}

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Compiles and minifies for test

npm run build-test