Vue3組件間的通信方式詳解
在寫 vue3 的項目中,我們都會進行組件通信,除了使用 pinia 公共數(shù)據(jù)源的方式除外,我們還可采用那些更簡單的API方法呢?給大家介紹介紹幾種父子組件和子父組件通信的方式。
1、父子組件通信
1.1 defineProps
父子組件通信我們第一個想到的就是props,我們在子組件顯示聲明所接受的props,然后我們在從父組件傳入對應的 key與value, 這樣我們就可以在子組件上接收到父組件傳過來的屬性與值。
具體實現(xiàn)如下:
// children.vue
<template>
<ul class="list-group">
<li class="list-group-item" v-for="item in list" :key="index">
{{item}}
</li>
</ul>
</template>
<script setup>
import { defineProps } from 'vue';
const props = defineProps({
list :{
type: Array,
default: () => {}
}
})
</script>// parent.vue
<template>
<div class="parent-wrap">
<input type="text" v-model="value" class="form-control" placeholder="請輸入">
<div class="input-group-append">
<button class="btn btn-primary" @click="handleAdd">添加</button>
</div>
</div>
<!-- child -->
<childrenVue :list="list"></childrenVue>
</template>
<script setup>
import { ref } from 'vue';
import childrenVue from './children.vue';
const value = ref('')
const list = ref(['javaScript', 'Html', 'CSS'])
const handleAdd = () =>{
list.value.push(value.value)
value = ''
}
</script>
如上圖所示,我們既實現(xiàn)了在子組件上顯示了父組件傳過來的 list 數(shù)組,還使可以向list添加數(shù)據(jù)使子組件數(shù)據(jù)更新。
1.2 provide/inject
當我們聊完了props,我們第二個要介紹的就是 vue3 的一個組合式選項 provide 和inject。
projct用于提供可以被后代組件注入的值,而inject用于聲明要通過從上層提供方匹配并注入進當前組件的屬性。 其代碼實現(xiàn)如下:
// children.vue
<template>
<ul class="list-group">
<li class="list-group-item" v-for="item in list" :key="item">{{item}}</li>
</ul>
</template>
<script setup>
import { inject } from 'vue';
const list = inject('list')
</script>// parent.vue
<template>
<div class="parent-wrap">
<input type="text" v-model="value" class="form-control" placeholder="請輸入">
<div class="input-group-append">
<button class="btn btn-primary" @click="handleAdd">添加</button>
</div>
</div>
<!-- child -->
<childVue />
</template>
<script setup>
import childVue from "./child.vue";
const { ref, provide, readonly } = require("vue");
const value = ref('')
const list = ref(['javaScript', 'HTML', 'CSS'])
provide('list', readonly(list.value))
const handleAdd = () => {
list.value.push(value.value)
}
</script>
如上圖所示,我們使用 provide API向外提供了一個 key 為 list,值為list.value,同時將 list,value 設(shè)置成了只讀屬性,防止子組件修改父組件的數(shù)據(jù)源。然后我們 injectAPI接收了 list,實現(xiàn)了父子組件的通信。
2.子父組件通信
2.1 defineEmits
上面我介紹了兩種父向子傳值的方法,但在我們開發(fā)中,我們還會遇到子向父組件傳值的情況,那我們該怎么解決呢? 第一個方法就是vue3中的 defineEmits API,代碼實現(xiàn)如下:
// children.vue
<template>
<div class="parent-wrap">
<input type="text" v-model="value" class="form-control" placeholder="請輸入" />
<div class="input-group-append">
<button class="btn btn-primary" @click="handleAdd">添加</button>
</div>
</div>
</template>
<script setup>
const { ref, defineEmits } = require("vue");
const value = ref('')
const emits = defineEmits(['add']) //父傳子
// 給父組件傳一個函數(shù)
const handleAdd = () => {
emits('add', value.value)
value.value= ''
}
</script>// parent.vue
<template>
<childVue @add='handleAdd'/>
<ul class="list-group">
<li class="list-group-item" v-for="item in list" :key="item">{{item}}</li>
</ul>
</template>
<script setup>
import { ref } from '@vue/reactivity';
import childVue from './child.vue';
const list = ref(['javaScript', 'HTML', 'CSS'])
const handleAdd = (val) => {
list.value.push(val)
}
</script>
如上圖所示,我們在子組件上emit一個出了一個 add事件給父組件接收,同時在父組件上調(diào)用來執(zhí)行添加的邏輯,再將 input的value變?yōu)榭眨瑢崿F(xiàn)了父組件向子組件傳參。
2.2 v-model:xxx+emit
在介紹完 defineEmits后, 我們再來介紹一種與其有異曲同工之處的v-model:xxx + emit的方法,實現(xiàn)如下:
// children.vue
<template>
<div class="parent-wrap">
<input type="text" v-model="value" class="form-control" placeholder="請輸入" />
<div class="input-group-append">
<button class="btn btn-primary" @click="handleAdd">添加</button>
</div>
</div>
</template>
<script setup>
const { ref, defineProps, defineEmits } = require("vue");
const value = ref('')
const props = defineProps({
list: {
type: Array,
default: () => []
}
})
const emits = defineEmits(['list'])
// 給父組件一點東西
const handleAdd = () => {
// props.list.push(value.value) //不建議直接修改props的值 把握不住數(shù)據(jù)源的流轉(zhuǎn)
const arr = props.list
arr.push(value.value)
emits('list', arr)
value.value= ''
}
</script><template>
<childVue v-model:list="list" @list ='add'/>
<ul class="list-group">
<li class="list-group-item" v-for="item in list" :key="item">{{item}}</li>
</ul>
</template>
<script setup>
import { ref } from '@vue/reactivity';
import childVue from './child.vue';
const list = ref(['javaScript', 'HTML', 'CSS'])
const add =(val) => {
console.log(val);
console.log(list);
}
</script>
再和上面的defineEmits方法比較完以后,相信大家也看出了這兩者的異曲同工在哪了。我們這里是先將父組件的list傳給了子組件,再在子組件修改了父組件的數(shù)據(jù)源,同時再emit還給父組件,實現(xiàn)了子組件向父組件傳值。
到此這篇關(guān)于Vue3組件間的通信方式詳解的文章就介紹到這了,更多相關(guān)Vue3組件通信內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
解決VUE中document.body.scrollTop為0的問題
今天小編就為大家分享一篇解決VUE中document.body.scrollTop為0的問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-09-09
vue的無縫滾動組件vue-seamless-scroll實例
本篇文章主要給大家講解了vue的無縫滾動組件vue-seamless-scroll的用法,需要的朋友參考學習下吧。2017-12-12

