# vue mobile base **Repository Path**: vjs/vue-mobile-base ## Basic Information - **Project Name**: vue mobile base - **Description**: vue cli3 mobile 基础项目 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-11-18 - **Last Updated**: 2022-09-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue-mobi ## Project setup ``` yarn install ``` ### Compiles and hot-reloads for development ``` yarn run serve ``` ### Compiles and minifies for production ``` yarn run build ``` ### Run your tests ``` yarn run test ``` ### Lints and fixes files ``` yarn run lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). { "explorer.confirmDelete": false, "git.autofetch": true, "git.confirmSync": false, // #每次保存的时候自动格式化 "editor.formatOnSave": true, "editor.tabSize": 2, "eslint.autoFixOnSave": true, "eslint.run": "onType", "eslint.options": { "extensions": [".js", ".vue"] }, "eslint.validate": [ { "language": "vue", "autoFix": true } ], // #让 prettier 使用 eslint 的代码格式进行校验 "prettier.eslintIntegration": true, "prettier.tabWidth": 2, // #去掉代码结尾的分号 "prettier.semi": false, // #使用带引号替代双引号 "prettier.singleQuote": true, // #让函数(名)和后面的括号之间加个空格 "javascript.format.insertSpaceBeforeFunctionParenthesis": true, // #这个按用户自身习惯选择 "vetur.format.defaultFormatter.html": "js-beautify-html", "vetur.format.defaultFormatterOptions": { "js-beautify-html": { "wrap_attributes": "force-aligned" // #vue 组件中 html 代码格式化样式 } }, "git.enableSmartCommit": true, "vetur.format.defaultFormatter.ts": "vscode-typescript", "window.zoomLevel": 0, "workbench.colorTheme": "Default Light+", "view-in-browser.customBrowser": "chrome", "eslint.packageManager": "yarn", "editor.formatOnType": true, "editor.detectIndentation": false, "editor.insertSpaces": false, "html.format.indentInnerHtml": true, "prettier.useTabs": true }