本篇內(nèi)容主要講解“Vue3組件間如何通訊”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“Vue3組件間如何通訊”吧!
創(chuàng)新互聯(lián)是一家專注于做網(wǎng)站、網(wǎng)站建設(shè)與策劃設(shè)計,眉山網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)10余年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:眉山等地區(qū)。眉山做網(wǎng)站價格咨詢:18980820575
本文講解
Vue 3.2
組件多種通訊方式的基礎(chǔ)用法,并且使用了單文件組件
。
眾所周知,Vue.js
中一個很重要的知識點是組件通信,不管是業(yè)務(wù)類的開發(fā)還是組件庫開發(fā),都有各自的通訊方法。
本文適合:
有 Vue 3
基礎(chǔ)的讀者。
打算開發(fā)組件庫的讀者。
本文會涉及的知識點:
Props
emits
expose / ref
Non-Props
v-model
插槽 slot
provide / inject
總線 bus
getCurrentInstance
Vuex
Pinia
mitt.js
我會將上面羅列的知識點都寫一個簡單的 demo。本文的目的是讓大家知道有這些方法可以用,所以并不會深挖每個知識點。
建議讀者跟著本文敲一遍代碼,然后根據(jù)本文給出的鏈接去深挖各個知識點。
收藏(學(xué)到)是自己的!
父組件傳值給子組件(簡稱:父傳子)
Props 文檔
https://v3.cn.vuejs.org/guide/component-props.html
父組件
// Parent.vue
子組件
// Child.vue{{ msg }}
在 中必須使用
defineProps
API 來聲明 props
,它具備完整的推斷并且在 中是直接可用的。
更多細節(jié)請看 文檔。
https://v3.cn.vuejs.org/api/sfc-script-setup.html#defineprops-%E5%92%8C-defineemits
在 中,
defineProps
不需要另外引入。
props
其實還能做很多事情,比如:設(shè)置默認值 default
,類型驗證 type
,要求必傳 required
,自定義驗證函數(shù) validator
等等。
大家可以去官網(wǎng)看看,這是必須掌握的知識點!
props 文檔
https://v3.cn.vuejs.org/guide/component-props.html
子組件通知父組件觸發(fā)一個事件,并且可以傳值給父組件。(簡稱:子傳父)
emits 文檔
https://v3.cn.vuejs.org/guide/migration/emits-option.html
父組件
// Parent.vue父組件:{{ message }}
子組件
// Child.vue子組件:
和 props
一樣,在 中必須使用
defineEmits
API 來聲明 emits
,它具備完整的推斷并且在 中是直接可用的。
更多細節(jié)請看 文檔。
https://v3.cn.vuejs.org/api/sfc-script-setup.html#defineprops-%E5%92%8C-defineemits
在 中,
defineEmits
不需要另外引入。
子組件可以通過 expose
暴露自身的方法和數(shù)據(jù)。
父組件通過 ref
獲取到子組件并調(diào)用其方法或訪問數(shù)據(jù)。
expose 文檔
https://v3.cn.vuejs.org/api/options-data.html#expose
用例子說話
父組件
// Parent.vue父組件:拿到子組件的message數(shù)據(jù):{{ msg }}
子組件
// Child.vue子組件:{{ message }}
在 中,
defineExpose
不需要另外引入。
expose 文檔
https://v3.cn.vuejs.org/api/options-data.html#expose
defineExpose 文檔
https://v3.cn.vuejs.org/api/sfc-script-setup.html#defineexpose
所謂的 Non-Props
就是 非 Prop 的 Attribute。
意思是在子組件中,沒使用 prop
或 emits
定義的 attribute
,可以通過 $attrs
來訪問。
常見的有 class
、style
和 id
。
還是舉個例子會直觀點
父組件
// Parent.vue
子組件
// Child.vue子組件:打開控制臺看看
打開控制臺可以看到,屬性被掛到 HTML
元素上了。
但在 Vue3
中,組件已經(jīng)沒規(guī)定只能有一個根元素了。如果子組件是多個元素時,上面的例子就不生效了。
// Child.vue子組件:打開控制臺看看子組件:打開控制臺看看
此時可以使用 $attrs
的方式進行綁定。
// Child.vue只綁定指定值全綁定
v-model
是 Vue
的一個語法糖。在 Vue3
中的玩法就更多(暈)了。
組件上的 v-model
使用 modelValue
作為 prop 和 update:modelValue
作為事件。
v-model 參數(shù)文檔
https://v3.cn.vuejs.org/guide/component-custom-events.html#v-model-%E5%8F%82%E6%95%B0
父組件
// Parent.vue
子組件
// Child.vue{{modelValue}}
你也可以這樣寫,更加簡單
子組件
// Child.vue{{modelValue}}
多個 v-model 綁定 文檔
https://v3.cn.vuejs.org/guide/component-custom-events.html#%E5%A4%9A%E4%B8%AA-v-model-%E7%BB%91%E5%AE%9A
父組件
// Parent.vue
子組件
// Child.vue{{msg1}}{{msg2}}
v-model
還能通過 .
的方式傳入修飾。
v-model 修飾符 文檔
https://v3.cn.vuejs.org/guide/component-custom-events.html#%E5%A4%84%E7%90%86-v-model-%E4%BF%AE%E9%A5%B0%E7%AC%A6
父組件
// Parent.vue
子組件
// Child.vue{{modelValue}}
插槽可以理解為傳一段 HTML
片段給子組件。子組件將
元素作為承載分發(fā)內(nèi)容的出口。
插槽 文檔
https://v3.cn.vuejs.org/guide/component-slots.html
本文打算講講日常用得比較多的3種插槽:默認插槽、具名插槽、作用域插槽。
插槽的基礎(chǔ)用法非常簡單,只需在 子組件中使用
標(biāo)簽,就會將父組件傳進來的 HTML
內(nèi)容渲染出來。
默認插槽 文檔
https://v3.cn.vuejs.org/guide/component-slots.html#%E6%8F%92%E6%A7%BD%E5%86%85%E5%AE%B9
父組件
// Parent.vue 雷猴啊
子組件
// Child.vue
具名插槽就是在 默認插槽的基礎(chǔ)上進行分類,可以理解為對號入座。
具名插槽 文檔
https://v3.cn.vuejs.org/guide/component-slots.html#%E5%85%B7%E5%90%8D%E6%8F%92%E6%A7%BD
父組件
// Parent.vue 雷猴啊
子組件
// Child.vue
父組件需要使用 標(biāo)簽,并在標(biāo)簽上使用
v-solt: + 名稱
。
子組件需要在
標(biāo)簽里用 name= 名稱
對應(yīng)接收。
這就是 對號入座。
最后需要注意的是,插槽內(nèi)容的排版順序,是 以子組件里的排版為準(zhǔn)。
上面這個例子就是這樣,你可以仔細觀察子組件傳入順序和子組件的排版順序。
如果你用過 Element-Plus
這類 UI框架 的 Table
,應(yīng)該就能很好的理解什么叫作用域插槽。
作用域插槽 文檔
https://v3.cn.vuejs.org/guide/component-slots.html#%E4%BD%9C%E7%94%A8%E5%9F%9F%E6%8F%92%E6%A7%BD
父組件
// Parent.vue 名字:{{ scope.name }}職業(yè):{{ scope.occupation }}
子組件
// Child.vue
我沒寫樣式,所以用 hr
元素讓視覺上看上去比較清晰我就是懶。
遇到多層傳值時,使用 props
和 emit
的方式會顯得比較笨拙。這時就可以用 provide
和 inject
了。
provide
是在父組件里使用的,可以往下傳值。
inject
是在子(后代)組件里使用的,可以網(wǎng)上取值。
無論組件層次結(jié)構(gòu)有多深,父組件都可以作為其所有子組件的依賴提供者。
provide / inject 文檔
https://v3.cn.vuejs.org/guide/component-provide-inject.html
父組件
// Parent.vue
子組件
// Child.vuemsg: {{ msg }}name: {{name}}
provide
可以配合 readonly
一起使用,詳情可以看上面例子和注釋。
provide
和 inject
其實主要是用在深層關(guān)系中傳值,上面的例子只有父子2層,只是為了舉例說明我懶。
在 Vue2
有總線傳值的方法,我們在 Vue3
中也可以自己模擬。
這個方式其實有點像 Vuex
或者 Pinia
那樣,弄一個獨立的工具出來專門控制數(shù)據(jù)。
但和 Vuex
或 Pinia
相比,我們自己寫的這個方法并沒有很好的數(shù)據(jù)跟蹤之類的特性。
原理
我們創(chuàng)建一個 Bus.js
文件,用來控制數(shù)據(jù)和注冊事件的。
Bus.js
里有一個 Bus
類
eventList
是必須項,用來存放事件列表的。
constructor
里除了 eventList
外,其他都是自定義數(shù)據(jù),公共數(shù)據(jù)就是存在這里的。
$on
方法用來注冊事件。
$emit
方法可以調(diào)用 $on
里的事件。
$off
方法可以注銷 eventList
里的事件。
然后需要用到總線的組件,都導(dǎo)入 Bus.js
,就可以共同操作一份數(shù)據(jù)了。
Bus.js
import { ref } from 'vue' class Bus { constructor() { // 收集訂閱信息,調(diào)度中心 this.eventList = {}, // 事件列表,這項是必須的 // 下面的都是自定義值 this.msg = ref('這是一條總線的信息') } // 訂閱 $on(name, fn) { this.eventList[name] = this.eventList[name] || [] this.eventList[name].push(fn) } // 發(fā)布 $emit(name, data) { if (this.eventList[name]) { this.eventList[name].forEach((fn) => { fn(data) }); } } // 取消訂閱 $off(name) { if (this.eventList[name]) { delete this.eventList[name] } } } export default new Bus()
父組件
// Parent.vue父組件: message: {{ message }} msg: {{ msg }}
子組件
// Child.vue子組件:
這個方法其實還挺好用的,但光看可能有點懵,請大家務(wù)必親手敲一下代碼實踐一下。
getcurrentinstance
是 vue
提供的一個方法,支持訪問內(nèi)部組件實例。
getCurrentInstance
只暴露給高階使用場景,典型的比如在庫中。強烈反對在應(yīng)用的代碼中使用getCurrentInstance
。請不要把它當(dāng)作在組合式 API 中獲取this
的替代方案來使用。
說白了,這個方法 適合在開發(fā)組件庫的情況下使用,不適合日常業(yè)務(wù)開發(fā)中使用。
getCurrentInstance
只能在 setup 或生命周期鉤子中調(diào)用。
getcurrentinstance 文檔
https://v3.cn.vuejs.org/api/composition-api.html#getcurrentinstance
在 中,我模擬了類似
$parent
和 $children
的方式。
父組件
// Parent.vue父組件 message 的值: {{ message }}
子組件
// Child.vue----------------------------子組件:
可以將代碼復(fù)制到你的項目中運行試試看,最好還是敲一遍咯。
Vuex
主要解決 跨組件通信的問題。
在 Vue3
中,需要使用 Vuex v4.x
版本。
用 npm
或者 Yarn
安裝到項目中。
npm install vuex@next --save # 或 yarn add vuex@next --save
安裝成功后,在 src
目錄下創(chuàng)建 store
目錄,再在 store
下創(chuàng)建 index.js
文件。
// store/index.js import { createStore } from 'vuex' export default createStore({ state: { }, getters: { }, mutations: { }, actions: { }, modules: { } })
在 store/index.js
下輸入以上內(nèi)容。
state
:數(shù)據(jù)倉庫,用來存數(shù)據(jù)的。
getters
:獲取數(shù)據(jù)的,有點像 computed
的用法(個人覺得)。
mutations
: 更改 state
數(shù)據(jù)的方法都要寫在 mutations
里。
actions
:異步異步異步,異步的方法都寫在這里,但最后還是需要通過 mutations
來修改 state
的數(shù)據(jù)。
modules
:分包。如果項目比較大,可以將業(yè)務(wù)拆散成獨立模塊,然后分文件管理和存放。
然后在 src/main.js
中引入
import { createApp } from 'vue' import App from './App.vue' import store from './store' const app = createApp(App) app .use(store) .mount('#app')
store/index.js
// store/index.js import { createStore } from 'vuex' export default createStore({ state: { msg: '雷猴' } })
組件
// xxx.vue
我覺得 Getter
方法和 computed
是有點像的。
比如我們需要過濾一下數(shù)據(jù),或者返回時組裝一下數(shù)據(jù),都可以用 Getter
方法。
store/index.js
// store/index.js import { createStore } from 'vuex' export default createStore({ state: { msg: '雷猴' }, getters: { getMsg(state) { return state.msg + ' 世界!' } } })
組件
// xxx.vue
Mutation
是修改 State
數(shù)據(jù)的唯一方法,這樣 Vuex
才可以跟蹤數(shù)據(jù)流向。
在組件中通過 commit
調(diào)用即可。
store/index.js
// store/index.js import { createStore } from 'vuex' export default createStore({ state: { msg: '雷猴' }, mutations: { changeMsg(state, data) { state.msg = data } } })
組件
// xxx.vue
我習(xí)慣將異步的東西放在 Action
方法里寫,然后在組件使用 dispatch
方法調(diào)用。
store/index.js
// store/index.js import { createStore } from 'vuex' export default createStore({ state: { msg: '雷猴' }, mutations: { changeMsg(state, data) { state.msg = data } }, actions: { fetchMsg(context) { // 模擬ajax請求 setTimeout(() => { context.commit('changeMsg', '鯊魚辣椒') }, 1000) } } })
組件
// xxx.vue
Module
就是傳說中的分包了。這需要你將不同模塊的數(shù)據(jù)拆分成一個個 js
文件。
我舉個例子,目錄如下
store |- index.js |- modules/ |- user.js |- goods.js
index.js
對外的出口(主文件)
modules/user.js
用戶相關(guān)模塊
modules/goods.js
商品模塊
index.js
import { createStore } from 'vuex' import user from './modules/user' import goods from './modules/goods' export default createStore({ state: {}, getters: {}, mutations: {}, actions: {}, modules: { user, goods } })
user.js
const user = { state: { }, getters: { }, mutations: { }, actions: { } } export default user
goods.js
const goods = { state: { }, getters: { }, mutations: { }, actions: { } } export default goods
然后在各個模塊里放入相應(yīng)的數(shù)據(jù)和方法就行。
在組建中調(diào)用方法和訪問數(shù)據(jù),都和之前的用法差不多的。
以上就是 Vuex
的基礎(chǔ)用法。除此之外,Vuex
還有各種語法糖,大家可以自行查閱 官方文檔(https://vuex.vuejs.org/zh/)
Pinia
是最近比較火熱的一個工具,也是用來處理 跨組件通信的,極大可能成為 Vuex 5
。
Pinia 文檔
https://pinia.vuejs.org/
從我使用 Pinia
一陣后的角度來看,Pinia
跟 Vuex
相比有以下優(yōu)點:
調(diào)用時代碼跟簡潔了。
對 TS
更友好。
合并了 Vuex
的 Mutation
和 Action
。天然的支持異步了。
天然分包。
除此之外,Pinia
官網(wǎng)還說它適用于 Vue2
和 Vue3
。但我沒試過在 Vue2
中使用我懶得試。
Pinia
簡化了狀態(tài)管理模塊,只用這3個東西就能應(yīng)對日常大多任務(wù)。
state
:存儲數(shù)據(jù)的倉庫
getters
:獲取和過濾數(shù)據(jù)(跟 computed
有點像)
actions
:存放 “修改 state
”的方法
我舉個簡單的例子
npm install pinia # 或 yarn add pinia
在 src
目錄下創(chuàng)建 store
目錄,再在 store
里創(chuàng)建 index.js
和 user.js
目錄結(jié)構(gòu)如下
store |- index.js |- user.js
index.js
import { createPinia } from 'pinia' const store = createPinia() export default store
user.js
常見的寫法有2種,選其中一種就行。
import { defineStore } from 'pinia' // 寫法1 export const useUserStore = defineStore({ id: 'user', // id必填,且需要唯一 state: () => { return { name: '雷猴' } }, getters: { fullName: (state) => { return '我叫 ' + state.name } }, actions: { updateName(name) { this.name = name } } }) // 寫法2 export const useUserStore = defineStore('user',{ state: () => { return { name: '雷猴' } }, getters: { fullName: (state) => { return '我叫 ' + state.name } }, actions: { updateName(name) { this.name = name } } })
然后在 src/main.js
中引入 store/index.js
src/main.js
import { createApp } from 'vue' import App from './App.vue' import store from './store' const app = createApp(App) app .use(store) .mount('#app')
組件
// xxx.vuename: {{ name }}全名:{{ fullName }}
其實 Pinia
的用法和 Vuex
是挺像的,默認就是分包的邏輯,在這方面我支持 菠蘿(Pinia)。
Pinia
還提供了多種語法糖,強烈建議閱讀一下 官方文檔(https://pinia.vuejs.org/)。
我們前面用到的 總線 Bus方法,其實和 mitt.js
有點像,但 mitt.js
提供了更多的方法。
比如:
on
:添加事件
emit
:執(zhí)行事件
off
:移除事件
clear
:清除所有事件
mitt.js
不是專門給 Vue
服務(wù)的,但 Vue
可以利用 mitt.js
做跨組件通信。
npm i mitt
我模擬一下 總線Bus的方式。
我在同級目錄創(chuàng)建3個文件用作模擬。
Parent.vue Child.vue Bus.js
Bus.js
// Bus.js import mitt from 'mitt' export default mitt()
Parent.vue
// Parent.vueMitt
Child.vue
// Child.vueChild:
此時,點擊 Child.vue
上的按鈕,在控制臺就會執(zhí)行在 Parent.vue
里定義的方法。
mitt.js
的用法其實很簡單,建議跟著 官方示例 敲一下代碼,幾分鐘就上手了。
到此,相信大家對“Vue3組件間如何通訊”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!