其餘章節請看:javascript
vue 快速入門 系列css
在 vue loader 一文中咱們已經學會從零搭建一個簡單的,用於單文件組件開發的腳手架;本篇,咱們將全面學習 vue-cli 這個官方的、成熟的腳手架。html
分上下兩篇進行,上篇主要是」基礎「
,下篇主要是「開發」
vue
Tip:介紹順序儘量保持與官方文檔一致java
vue-cli 是一個基於 vue.js 進行快速開發的完整系統。node
讓咱們專一在撰寫應用上,而沒必要花好幾天去糾結配置的問題。jquery
Vue CLI 有幾個獨立的部分:cli
、cli 服務
和cli 插件
。webpack
CLI (@vue/cli) 是一個全局安裝的 npm 包,提供了終端裏的 vue
命令。ios
能夠經過 vue create
(下文將會詳細介紹) 快速搭建一個新項目。git
CLI 服務 (@vue/cli-service
) 是一個開發環境依賴。它是一個 npm 包,局部安裝在每一個 @vue/cli
建立的項目中。
CLI 服務是構建於 webpack
和 webpack-dev-server
之上的。它包含了:
serve
、build
和 inspect
命令。CLI 插件是向你的 Vue 項目提供可選功能的 npm 包,例如 Babel/TypeScript 轉譯、ESLint 集成、單元測試和 end-to-end 測試等。Vue CLI 插件的名字以 @vue/cli-plugin-
(內建插件) 或 vue-cli-plugin-
(社區插件) 開頭,很是容易使用。
當你在項目內部運行 vue-cli-service 命令時,它會自動解析並加載 package.json 中列出的全部 CLI 插件。
插件能夠做爲項目建立過程的一部分,或在後期加入到項目中,也能夠被歸成一組可複用的預設(preset
)。
全局安裝 @vue/cli 這個包:
> npm install -g @vue/cli
你能夠經過簡單運行 vue
,看看是否展現出了一份全部可用命令的幫助信息,來驗證它是否安裝成功。你還能夠用這個命令來檢查其版本是否正確。請看示例:
// 驗證是否安裝成功 > vue Usage: vue <command> [options] Options: -h, --help output usage information ...
// 查看版本 > vue --version @vue/cli 4.5.13
如需升級全局的 Vue CLI 包,請運行:
npm update -g @vue/cli
若需升級項目中的 Vue CLI 相關模塊(以 @vue/cli-plugin-
或 vue-cli-plugin-
開頭),請在項目目錄下運行 vue upgrade
:
用法: upgrade [options] [plugin-name] (試用)升級 Vue CLI 服務及插件 選項: -t, --to <version> 升級 <plugin-name> 到指定的版本 -f, --from <version> 跳過本地版本檢測,默認插件是今後處指定的版本升級上來 -r, --registry <url> 使用指定的 registry 地址安裝依賴 --all 升級全部的插件 --next 檢查插件新版本時,包括 alpha/beta/rc 版本在內 -h, --help 輸出幫助內容
你可使用 vue serve
和 vue build
命令對單個 *.vue
文件進行快速原型開發,不過這須要先額外安裝一個全局的擴展:
> npm install -g @vue/cli-service-global
vue serve
的缺點就是它須要安裝全局依賴,這使得它在不一樣機器上的一致性不能獲得保證。所以這隻適用於快速原型開發。
你所須要的僅僅是一個 App.vue 文件。
請看示例:
建立目錄 demo,新建 App.vue 文件:
// demo/App.vue <template> <h1>Hello!</h1> </template>
而後在這個 App.vue 文件所在的目錄下運行:
demo> vue serve App running at: - Local: http://localhost:8080/ - Network: http://192.168.0.103:8080/
訪問 http://localhost:8080/
,頁面顯示 Hello,並有熱模塊替換功能。
vue serve
使用了和 vue create
建立的項目相同的默認設置 (webpack、Babel、PostCSS 和 ESLint)。它會在當前目錄自動推導入口文件——入口能夠是 main.js、index.js、App.vue 或 app.vue 中的一個。
注:在此項目中寫 less 提示須要 css-loader
,編寫的 postcss
也未生效 color: lch(53 105 40);
—— lch 是明天的 css 語法。
你也可使用 vue build
將目標文件構建成一個生產環境的包並用來部署:
demo> vue build / Building for production... File Size Gzipped dist\js\chunk-vendors.86166fc4.js 65.95 KiB 23.71 KiB dist\js\app.6d4e2596.js 1.79 KiB 0.89 KiB
dist
目錄中會生成 index.html
,筆者在 dist 目錄下運行靜態文件服務器,在打開的頁面中能看到 Hello!
:
demo> cd dist dist> anywhere Running at http://192.168.85.1:8000/ Also running at https://192.168.85.1:8001/
vue build
也提供了將組件構建成爲一個庫或一個 Web Components 組件的能力
運行如下命令來建立一個新項目:
> vue create vue-hello-world
提示選取一個預設(preset)。
Vue CLI v4.5.13 ? Please pick a preset: Default ([Vue 2] babel, eslint) // 默認選項 vue2 Default (Vue 3) ([Vue 3] babel, eslint) // 默認選項 vue3 > Manually select features // 手動選擇
Tip:筆者使用 powershell 終端,能夠經過上下鍵來切換選項
默認的設置很是適合快速建立一個新項目的原型,而手動設置則提供了更多的選項,它們是面向生產的項目更加須要的。
若是選擇 default 則會直接建立項目,建立項目包括 babel,eslin 這些工具,而 vue-router,vuex等其餘依賴須要本身手動安裝。
因爲咱們的項目須要 vue-router、vuex,因此就選擇「手動選擇」。
Vue CLI v4.5.13 ? Please pick a preset: Manually select features ? Check the features needed for your project: (*) Choose Vue version // vue 的版本 (*) Babel // 代碼編譯 (*) TypeScript // ts (*) Progressive Web App (PWA) Support // 漸進式網頁應用程序 (*) Router // 路由 - vue router (*) Vuex // 狀態管理 - vuex (*) CSS Pre-processors // css預處理 (*) Linter / Formatter // 代碼風格、格式校驗 (*) Unit Testing // 單元測試 >(*) E2E Testing // 端對端測試
Tip:這裏爲了演示,因此選擇所有(筆者使用空格鍵來選中或取消)
所有選中後,回車,會依次詢問咱們對應特性的一些具體需求,好比 vue 的版本、是否使用class風格的組件語法、路由是否使用 history 模式等等:
Vue CLI v4.5.13 ? Please pick a preset: Manually select features ? Check the features needed for your project: Choose Vue version, Babel, TS, PWA, Router, Vuex, CSS Pre-processors, Linter, Unit, E2E ? Choose a version of Vue.js that you want to start the project with (Use arrow keys) > 2.x 3.x
選擇 vue 2,回車:
Vue CLI v4.5.13 ? Please pick a preset: Manually select features ? Check the features needed for your project: Choose Vue version, Babel, TS, PWA, Router, Vuex, CSS Pre-processors, Linter, Unit, E2E ? Choose a version of Vue.js that you want to start the project with 2.x ? Use class-style component syntax? (Y/n)
這裏詢問的是是否使用class風格的組件語法,若是在項目中想要保持使用TypeScript的class風格的話,建議你們選擇 y:
... ? Choose a version of Vue.js that you want to start the project with 2.x ? Use class-style component syntax? Yes ? Use Babel alongside TypeScript (required for modern mode, auto-detected polyfills, transpiling JSX)? (Y/n)
將 Babel 與 TypeScript 一塊兒使用,選擇 y:
... ? Use Babel alongside TypeScript (required for modern mode, auto-detected polyfills, transpiling JSX)? Yes ? Use history mode for router? (Requires proper server setup for index fallback in production) (Y/n)
路由是否使用 history 模式。由於 history 須要額外配置,因此這裏選用 hash,輸入n:
// CSS Pre-processors ... ? Use history mode for router? (Requires proper server setup for index fallback in production) No ? Pick a CSS pre-processor (PostCSS, Autoprefixer and CSS Modules are supported by default): (Use arrow keys) > Sass/SCSS (with dart-sass) Sass/SCSS (with node-sass) Less Stylus
選擇一種CSS預處理類型,筆者選用 less:
// Linter / Formatter ... ? Pick a CSS pre-processor (PostCSS, Autoprefixer and CSS Modules are supported by default): Less ? Pick a linter / formatter config: (Use arrow keys) > ESLint with error prevention only // 只進行報錯提醒 ESLint + Airbnb config // airbnb 模式 ESLint + Standard config // 標準模式 ESLint + Prettier // prettier 模式 TSLint (deprecated) // 已棄用
選擇 eslint 模式,筆者選標準模式:
... ? Pick a linter / formatter config: Standard ? Pick additional lint features: (Press <space> to select, <a> to toggle all, <i> to invert selection) >(*) Lint on save ( ) Lint and fix on commit
選擇校驗時機,通常都會選擇保存時校驗,好及時作出調整,筆者選第一項:
// Unit Testing ... ? Pick additional lint features: Lint on save ? Pick a unit testing solution: (Use arrow keys) > Mocha + Chai Jes
選擇單元測試解決方案,廣泛用到最多的時Mocha + chai
,咱們也選第一項。
// E2E Testing E2E(End To End) ... ? Pick a unit testing solution: Mocha ? Pick an E2E testing solution: (Use arrow keys) > Cypress (Chrome only) Nightwatch (WebDriver-based) WebdriverIO (WebDriver/DevTools based)
選擇端對端測試的類型,默認回車:
// 額外選項 ... ? Pick an E2E testing solution: Cypress ? Where do you prefer placing config for Babel, ESLint, etc.? (Use arrow keys) > In dedicated config files // 在專用配置文件中 In package.json
選擇 Babel, ESLint 等配置存放位置,建議使用第一個(專用配置文件)
Tip: 若是選用第一項,例如 eslint 的配置就會單獨存放在一個文件(.eslintrc.js)中;若是選第二項,該配置就會存放在 package.josn 中,而 package.json 是不能寫註釋,並且太多配置都寫入 package.json 也很差維護
? Where do you prefer placing config for Babel, ESLint, etc.? In dedicated config files ? Save this as a preset for future projects? (y/N)
是否保存成一個預設給之後項目使用。這裏選 y,而後輸入存儲當前配置項的名稱,例如 presetNameA
? Save this as a preset for future projects? Yes ? Save preset as:
隨後就會建立完畢,並提示經過 npm run serve
啓動服務:
... � Generating README.md... � Successfully created project vue-hello-world. � Get started with the following commands: $ cd vue-hello-world $ npm run serve
> npm run serve ... Time: 3055ms App running at: - Local: http://localhost:8080/ - Network: http://192.168.0.103:8080/
經過瀏覽器訪問 http://localhost:8080/
便可訪問項目。
Tip:下次建立項目的時候就會看到剛保存的預設(presetNameA):
> vue create demo Vue CLI v4.5.13 ? Please pick a preset: (Use arrow keys) > presetNameA ([Vue 2] less, babel, typescript, pwa, router, vuex, eslint, unit-mocha, e2e-cypress) Default ([Vue 2] babel, eslint) Default (Vue 3) ([Vue 3] babel, eslint) Manually select features
Vue CLI 使用了一套基於插件的架構。若是你查閱一個新建立項目的 package.json
,就會發現依賴都是以 @vue/cli-plugin-
開頭的:
// vue-hello-world/package.json { "name": "vue-hello-world", "version": "0.1.0", "private": true, "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build", "test:unit": "vue-cli-service test:unit", "test:e2e": "vue-cli-service test:e2e", "lint": "vue-cli-service lint" }, "dependencies": { "core-js": "^3.6.5", "register-service-worker": "^1.7.1", "vue": "^2.6.11", "vue-class-component": "^7.2.3", "vue-property-decorator": "^9.1.2", "vue-router": "^3.2.0", "vuex": "^3.4.0" }, "devDependencies": { "@types/chai": "^4.2.11", "@types/mocha": "^5.2.4", "@typescript-eslint/eslint-plugin": "^4.18.0", "@typescript-eslint/parser": "^4.18.0", "@vue/cli-plugin-babel": "~4.5.0", "@vue/cli-plugin-e2e-cypress": "~4.5.0", "@vue/cli-plugin-eslint": "~4.5.0", "@vue/cli-plugin-pwa": "~4.5.0", "@vue/cli-plugin-router": "~4.5.0", "@vue/cli-plugin-typescript": "~4.5.0", "@vue/cli-plugin-unit-mocha": "~4.5.0", "@vue/cli-plugin-vuex": "~4.5.0", "@vue/cli-service": "~4.5.0", "@vue/eslint-config-standard": "^5.1.2", "@vue/eslint-config-typescript": "^7.0.0", "@vue/test-utils": "^1.0.3", "chai": "^4.1.2", "eslint": "^6.7.2", "eslint-plugin-import": "^2.20.2", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.0", "eslint-plugin-vue": "^6.2.2", "less": "^3.0.4", "less-loader": "^5.0.0", "typescript": "~4.1.5", "vue-template-compiler": "^2.6.11" } }
插件能夠修改 webpack 的內部配置,也能夠向 vue-cli-service
注入命令。在項目建立的過程當中,絕大部分列出的特性都是經過插件來實現的。
基於插件的架構使得 Vue CLI 靈活且可擴展。
下面咱們將經過一個示例來說解插件,首先新建項目 demo2(選擇 Default
):
// 選則`Default ([Vue 2] babel, eslint)`默認建立 > vue create demo2
Tip: 前面建立的項目(vue-hello-world
)是基於 typescript,演示起來不是很方便
每一個 CLI 插件都會包含一個 (用來建立文件的) 生成器和一個 (用來調整 webpack 核心配置和注入命令的) 運行時插件。當你使用 vue create
來建立一個新項目的時候,有些插件會根據你選擇的特性被預安裝好。若是你想在一個已經被建立好的項目中安裝一個插件,可使用 vue add 命令,例如 vue add axios
Tip:vue add
的設計意圖是爲了安裝和調用 Vue CLI 插件。這不意味着替換掉普通的 npm 包。對於這些普通的 npm 包,你仍然須要選用包管理器。
下面咱們經過安裝 axios 來詳細瞭解一下vue add 插件
和 npm install 包
之間的區別:
> npm i axios
安裝完成,項目中只有 package.json 會增長相應的依賴:
"dependencies": { + "axios": "^0.21.1", "core-js": "^3.6.5", "vue": "^2.6.11" },
將 axios 這個包刪除,再次用 vue add
安裝 axios 插件:
// 刪除 > npm r axios
> vue add axios WARN There are uncommitted changes in the current repository, it's recommended to commit or stash them first. ? Still proceed?
Tip: 因爲會更改文件,因此會讓你先提交代碼
> vue add axios � Installing vue-cli-plugin-axios... ... Run `npm audit` for details. ✔ Successfully installed plugin: vue-cli-plugin-axios
告訴咱們正在安裝的包是:vue-cli-plugin-axios
安裝完成,經過 git status
就能知道此命令修改的文件和內容:
demo2> git status On branch master Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git restore <file>..." to discard changes in working directory) modified: package-lock.json modified: package.json modified: src/main.js Untracked files: (use "git add <file>..." to include in what will be committed) src/plugins/
// package.json "devDependencies": { "axios": "^0.18.0", "vue-cli-plugin-axios": "~0.0.4", },
// main.js import './plugins/axios'
// src/plugins/axios.js "use strict"; import Vue from 'vue'; import axios from "axios"; // Full config: https://github.com/axios/axios#request-config // axios.defaults.baseURL = process.env.baseURL || process.env.apiUrl || ''; // axios.defaults.headers.common['Authorization'] = AUTH_TOKEN; // axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'; let config = { // baseURL: process.env.baseURL || process.env.apiUrl || "" // timeout: 60 * 1000, // Timeout // withCredentials: true, // Check cross-site Access-Control }; const _axios = axios.create(config); _axios.interceptors.request.use( function(config) { // Do something before request is sent return config; }, function(error) { // Do something with request error return Promise.reject(error); } ); // Add a response interceptor _axios.interceptors.response.use( function(response) { // Do something with response data return response; }, function(error) { // Do something with response error return Promise.reject(error); } ); Plugin.install = function(Vue, options) { Vue.axios = _axios; window.axios = _axios; Object.defineProperties(Vue.prototype, { axios: { get() { return _axios; } }, $axios: { get() { return _axios; } }, }); }; Vue.use(Plugin) export default Plugin;
接着啓動服務,eslint 報錯,因而修改 eslint 配置繞過代碼校驗,再次重啓服務。
// package.json "extends": [ "plugin:vue/essential", - "eslint:recommended" ],
在任意組件中便可使用 axios,例如在 App.vue 中使用:
<script> export default {} console.log(window.axios); </script>
瀏覽器控制檯會輸出:
ƒ wrap() { var args = new Array(arguments.length); for (var i = 0; i < args.length; i++) { args[i] = arguments[i]; } return fn.apply(thisArg, args); }
至此,axios 已經成功引入咱們的項目,並且範文也已經就緒。
經過這個示例咱們也就明白,vue 提供的這個插件比 npm 這種方式更友好,好比有範文。
> vue add vuex � Installing @vue/cli-plugin-vuex... ...
安裝 axios 對應的包是 vue-cli-plugin-axios
,以 vue-cli-plugin-
開頭,屬於第三方插件
而 vuex 對應的包是 @vue/cli-plugin-vuex
,以 @vue/cli-plugin-
開頭。
咱們經過 vue ui
命令使用 GUI 安裝和管理插件。因爲前面咱們已經全局安裝,因此在任意目錄下運行便可:
> vue ui � Starting GUI... � Ready on http://localhost:8001
瀏覽器自動打開頁面,並來到Vue 項目管理器
系統,導入項目(例如 vue-hello-world
),你會能夠看見以下幾個菜單:
添加插件
就能夠查找插件,在查找插件的頁面,咱們知道:
jquery
對應的插件axios
對應的插件,將鼠標移到添加插件的圖標上會顯示:這個插件帶有一個生成器,能夠在項目中修改或增長文件vue
),開發依賴有哪些(例如 eslint
)配置 Vue 項目
、代碼質量和糾錯
等serve
、build
、lint
等)。還有 inspect
,能檢查 webpack 配置,好比查看項目對應開發環境和生成環境的 webpack
配置。一個 Vue CLI preset 是一個包含建立新項目所需預約義選項和插件的 JSON 對象,讓用戶無需在命令提示中選擇它們。
在 vue create
過程當中保存的 preset 會被放在你的 home 目錄下的一個配置文件中 (~/.vuerc
)。你能夠經過直接編輯這個文件來調整、添加、刪除保存好的 preset。
筆者預設以下:
> cat ~/.vuerc { "useTaobaoRegistry": false, "latestVersion": "4.5.13", "lastChecked": 1622962273301, "presets": { "presetNameA": { "useConfigFiles": true, "plugins": { "@vue/cli-plugin-babel": {}, "@vue/cli-plugin-typescript": { "classComponent": true, "useTsWithBabel": true }, "@vue/cli-plugin-pwa": {}, "@vue/cli-plugin-router": { "historyMode": false }, "@vue/cli-plugin-vuex": {}, "@vue/cli-plugin-eslint": { "config": "standard", "lintOn": [ "save" ] }, "@vue/cli-plugin-unit-mocha": {}, "@vue/cli-plugin-e2e-cypress": {} }, "vueVersion": "2", "cssPreprocessor": "less" } } }
Preset 的數據會被插件生成器用來生成相應的項目文件。除了上述這些字段,你也能夠爲集成工具添加配置:
{ "useConfigFiles": true, "plugins": {...}, "configs": { "vue": {...}, "postcss": {...}, "eslintConfig": {...}, "jest": {...} } }
這些額外的配置將會根據 useConfigFiles
的值被合併到 package.json
或相應的配置文件中。例如,當 "useConfigFiles": true
的時候,configs
的值將會被合併到 vue.config.js
中。
你能夠顯式地指定用到的插件的版本:
{ "plugins": { "@vue/cli-plugin-eslint": { "version": "^3.0.0", // ... 該插件的其它選項 } } }
注意對於官方插件來講這不是必須的——當被忽略時,CLI 會自動使用 registry 中最新的版本。不過推薦爲 preset 列出的全部第三方插件提供顯式的版本範圍。
在一個 Vue CLI 項目中,@vue/cli-service
安裝了一個名爲 vue-cli-service 的命令。你能夠在 npm scripts
中以 vue-cli-service
、或者從終端中以 ./node_modules/.bin/vue-cli-service
訪問這個命令。
上文咱們建立的項目 demo2 的 package.json
中的命令有:
{ "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build", "lint": "vue-cli-service lint" } }
能夠經過 npm
或 npx
(最新版的 npm 應該已經自帶) 執行命令:
> npm run serve
> npx vue-cli-service serve
Tip: 能夠經過 vue ui
命令使用 GUI 運行更多的特性腳本
用法:vue-cli-service serve [options] [entry] 選項: --open 在服務器啓動時打開瀏覽器 --copy 在服務器啓動時將 URL 複製到剪切版 --mode 指定環境模式 (默認值:development) --host 指定 host (默認值:0.0.0.0) --port 指定 port (默認值:8080) --https 使用 https (默認值:false)
vue-cli-service serve
命令會啓動一個開發服務器 (基於 webpack-dev-server) 並附帶開箱即用的模塊熱重載 (Hot-Module-Replacement)。
除了經過命令行參數,你也可使用 vue.config.js 裏的 devServer 字段配置開發服務器
命令行參數 [entry] 將被指定爲惟一入口,而非額外的追加入口。嘗試使用 [entry] 覆蓋 config.pages 中的 entry 將可能引起錯誤。
// 在服務器啓動時打開瀏覽器 demo2> npx vue-cli-service serve --open // 或者指定 entry demo2> npx vue-cli-service serve --open ./src/main.js
Tip:終端可能由於 eslint 報錯而終止編譯,能夠更改 eslint 配置。在項目根目錄下新建 vue.config.js
,重啓服務便可。
// vue.config.js module.exports = { lintOnSave: true }
用法:vue-cli-service build [options] [entry|pattern] 選項: --mode 指定環境模式 (默認值:production) --dest 指定輸出目錄 (默認值:dist) --modern 面向現代瀏覽器帶自動回退地構建應用 --target app | lib | wc | wc-async (默認值:app) --name 庫或 Web Components 模式下的名字 (默認值:package.json 中的 "name" 字段或入口文件名) --no-clean 在構建項目以前不清除目標目錄 --report 生成 report.html 以幫助分析包內容 --report-json 生成 report.json 以幫助分析包內容 --watch 監聽文件變化
vue-cli-service build
會在 dist/
目錄產生一個可用於生產環境的包,帶有 JS/CSS/HTML
的壓縮,和爲更好的緩存而作的自動的 vendor chunk splitting。它的 chunk manifest 會內聯在 HTML 裏。
這裏還有一些有用的命令參數:
--modern
使用現代模式構建應用,爲現代瀏覽器交付原生支持的 ES2015 代碼,並生成一個兼容老瀏覽器的包用來自動回退。// 打包生成了兩份:現代包和遺留包 demo2> npx vue-cli-service build --modern // 爲生產構建遺留包... / Building legacy bundle for production... File Size Gzipped dist\js\chunk-vendors-legacy.7b12297e.js 117.56 KiB 40.92 KiB dist\js\app-legacy.853ea99d.js 5.15 KiB 1.84 KiB dist\css\app.fb0c6e1c.css 0.33 KiB 0.23 KiB // 省略了圖像和其餘類型的資產 Images and other types of assets omitted. // 爲生產構建現代捆綁... - Building modern bundle for production... File Size Gzipped dist\js\chunk-vendors.1e2bb21b.js 92.78 KiB 32.14 KiB dist\js\app.d739a095.js 5.07 KiB 1.81 KiB dist\css\app.fb0c6e1c.css 0.33 KiB 0.23 KiB // 省略了圖像和其餘類型的資產 Images and other types of assets omitted.
--target
容許你將項目中的任何組件以一個庫或 Web Components 組件的方式進行構建。
--report
和 --report-json
會根據構建統計生成報告,它會幫助你分析包中包含的模塊們的大小。
demo2> npx vue-cli-service build --report | Building for production... File Size Gzipped dist\js\chunk-vendors.7b12297e.js 117.55 KiB 40.92 KiB dist\js\app.853ea99d.js 5.14 KiB 1.83 KiB dist\css\app.fb0c6e1c.css 0.33 KiB 0.23 KiB Images and other types of assets omitted.
會在 dist 目錄中生成 report.html
。
Tip: 若是你使用的是 vscode,只須要安裝 Live Server 插件,便可右鍵經過 live server 查看 report.html
,很是方便。
若是是 --report
,則不會生成 report.html
,而會生成 report.json
。
用法:vue-cli-service inspect [options] [...paths] 選項: --mode 指定環境模式 (默認值:development)
審查一個 Vue CLI 項目的 webpack config
。請看示例:
// 提取出webpack開發配置,導出到 webpack.config.development.js 中 demo2> npx vue-cli-service inspect --mode development >> webpack.config.development.js // 提取出webpack生成配置 demo2> npx vue-cli-service inspect --mode production >> webpack.config.production.js
注:接下來咱們學習過程當中會參考這兩個配置文件
有些 CLI 插件會向 vue-cli-service 注入額外的命令。例如 @vue/cli-plugin-eslint 會注入 vue-cli-service lint
命令。你能夠運行如下命令查看全部注入的命令:
demo2> npx vue-cli-service help Usage: vue-cli-service <command> [options] Commands: serve start development server build build for production inspect inspect internal webpack config lint lint and fix source files run vue-cli-service help [command] for usage of a specific command.
也能夠這樣學習每一個命令可用的選項:
npx vue-cli-service help [command]
cache-loader
會默認爲 Vue/Babel/TypeScript 編譯開啓。文件會緩存在 node_modules/.cache
中——若是你遇到了編譯方面的問題,記得先刪掉緩存目錄以後再試試看。// demo2 中的緩存文件: demo2> dir .\node_modules\.cache\ Mode LastWriteTime Length Name ---- ------------- ------ ---- d----- 2021/8/11 11:30 babel-loader d----- 2021/8/11 11:30 eslint-loader d----- 2021/7/19 19:31 terser-webpack-plugin d----- 2021/8/11 11:30 vue-loader
Tip:雖然 package.json 中沒有 cache-loader
和 thread-loader
,但 demo2/node_modules 中有。
在安裝以後,@vue/cli-service 也會安裝 yorkie,它會讓你在 package.json 的 gitHooks 字段中方便地指定 Git hook:
{ "gitHooks": { "pre-commit": "lint-staged" }, "lint-staged": { "*.{js,vue}": [ "vue-cli-service lint", "git add" ] } }
Tip:yorkie,fork 項目 husky,並作了一些改變,好比更改了從 package.json 中讀取鉤子的位置:
// before { "scripts": { "precommit": "foo" } }
// after { "gitHooks": { "pre-commit": "foo" } }
具體用法,請看示例(在demo2基礎上進行):
// package.json { ... "gitHooks": { "pre-commit": "lint-staged" }, "lint-staged": { "*.{js,vue}": [ "vue-cli-service lint", "git add" ] } }
執行 git commit
命令報錯:
demo2> git commit -m 'xx' On branch master (use "git add <file>..." to include in what will be committed) src/a.js 'lint-staged' 不是內部或外部命令,也不是可運行的程序 或批處理文件。 pre-commit hook failed (add --no-verify to bypass)
安裝依賴包:
// lint-staged - 對暫存的 git 文件運行 linter,不要讓很差的代碼溜進你的代碼庫! demo2> npm i -D lint-staged
接下來給 eslint 增長一個規則,而後在 a.js 中故意不遵照該規則:
// package.json { "eslintConfig": { "rules": { "no-console": "error" } }, }
// src/a.js let i = 1 console.log(i);
執行git commit
命令,驗證不經過,終止提交:
// 須要先 git add demo2> git add src/a.js demo2> git commit -m 'xx' > running pre-commit hook: lint-staged ⚠ Some of your tasks use `git add` command. Please remove it from the config since all modifications made by tasks will be automatically added to the git commit index. [STARTED] Preparing... [SUCCESS] Preparing... [STARTED] Running tasks... [STARTED] Running tasks for *.{js,vue} [STARTED] vue-cli-service lint [FAILED] vue-cli-service lint [FAILED] [FAILED] vue-cli-service lint [FAILED] [SUCCESS] Running tasks... [STARTED] Applying modifications... [SKIPPED] Skipped because of errors from tasks. [STARTED] Reverting to original state because of errors... [SUCCESS] Reverting to original state because of errors... [STARTED] Cleaning up... [SUCCESS] Cleaning up... ✖ vue-cli-service lint: error: Unexpected console statement (no-console) at src\a.js:2:1: 1 | let i = 1 > 2 | console.log(i); | ^ 3 | 1 error found. pre-commit hook failed (add --no-verify to bypass)
Tip:Git 鉤子,和其它版本控制系統同樣,Git 能在特定的重要動做發生時觸發自定義腳本。有兩組這樣的鉤子:客戶端的和服務器端的。客戶端鉤子由諸如提交和合並這樣的操做所調用,而服務器端鉤子做用於諸如接收被推送的提交這樣的聯網操做。你能夠爲所欲爲地運用這些鉤子。
// 項目 demo2 的 git hooks demo2> dir .\.git\hooks\ 目錄: demo2\.git\hooks Mode LastWriteTime Length Name ---- ------------- ------ ---- -a---- 2021/7/19 9:11 870 applypatch-msg -a---- 2021/7/19 9:07 478 applypatch-msg.sample -a---- 2021/7/19 9:11 854 commit-msg -a---- 2021/7/19 9:07 896 commit-msg.sample -a---- 2021/7/19 9:07 4655 fsmonitor-watchman.sample -a---- 2021/7/19 9:11 874 post-applypatch -a---- 2021/7/19 9:11 866 post-checkout -a---- 2021/7/19 9:11 858 post-commit -a---- 2021/7/19 9:11 854 post-merge -a---- 2021/7/19 9:11 862 post-receive -a---- 2021/7/19 9:11 862 post-rewrite -a---- 2021/7/19 9:11 858 post-update -a---- 2021/7/19 9:07 189 post-update.sample -a---- 2021/7/19 9:11 870 pre-applypatch -a---- 2021/7/19 9:07 424 pre-applypatch.sample -a---- 2021/7/19 9:11 858 pre-auto-gc -a---- 2021/7/19 9:11 854 pre-commit -a---- 2021/7/19 9:07 1643 pre-commit.sample -a---- 2021/7/19 9:07 416 pre-merge-commit.sample -a---- 2021/7/19 9:11 846 pre-push -a---- 2021/7/19 9:07 1348 pre-push.sample -a---- 2021/7/19 9:11 854 pre-rebase -a---- 2021/7/19 9:07 4898 pre-rebase.sample -a---- 2021/7/19 9:11 858 pre-receive -a---- 2021/7/19 9:07 544 pre-receive.sample -a---- 2021/7/19 9:11 913 prepare-commit-msg -a---- 2021/7/19 9:07 1492 prepare-commit-msg.sample -a---- 2021/7/19 9:11 878 push-to-checkout -a---- 2021/7/19 9:11 886 sendemail-validate -a---- 2021/7/19 9:11 838 update -a---- 2021/7/19 9:07 3635 update.sample
經過 vue create 建立的項目無需額外的配置就已經能夠跑起來了。插件的設計也是能夠相互共存的,因此絕大多數狀況下,你只須要在交互式命令提示中選取須要的功能便可。
不過咱們也知道知足每個需求是不太可能的,並且一個項目的需求也會不斷改變。經過 Vue CLI 建立的項目讓你無需 eject 就可以配置工具的幾乎每一個角落。
其餘章節請看: