Vue3子組件向父組件傳值的兩種實現(xiàn)方式
有兩種方式可以實現(xiàn)。
方式一:
父組件傳送一個處理方法給子組件,子組件調(diào)用這個處理方法把父組件關(guān)心的值作為參數(shù)傳給這個處理方法。
例子:================子組件 (父組件在下面)
<template>
<el-form :inline="true" :model="request" class="demo-form-inline">
<el-form-item>
<target-type-drop-down />
</el-form-item>
<el-form-item>
<include-type />
</el-form-item>
<el-form-item label="Include">
<el-input v-model="request.number" placeholder="3" />
</el-form-item>
<el-form-item>
# 當(dāng)button被按下時,子組件里的request變量內(nèi)容就會傳給父組件的處理方法
<el-button type="primary" @click="parentMethod(request)"
>Generate Req</el-button
>
</el-form-item>
</el-form>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
import { subRequest } from '@cp/MyTypes'
const request = ref<subRequest>({number: 3});
# 定義從父組件接收的處理方法
defineProps({
parentMethod: {
type: Function,
default: () => {},
},
})
================父組件
<template>
# 父組件傳送給子組件的處理方法
<request-gen v-if="showGenFlag" :parentMethod="childValueHandlingMethod" />
</template>
<script lang="ts" setup>
import { ref } from 'vue'
import { subRequest } from '@cp/MyTypes'
const subRequests = ref<subRequest[]>([])
const childValueHandlingMethod = (request: subRequest) => {
console.log('Hello I am from children component', request)
# 父組件把子組件傳過來的值放在了自己內(nèi)部變量數(shù)組里
subRequests.value.push(request)
}
</script>方式二:子組件發(fā)送emit方法給父組件
例子在子組件里,就兩步要做:1. 定義emits事件,2,在想要的時機發(fā)送emits事件
================子組件 (父組件在下面)
<template>
<el-dropdown class="margin-right">
<el-button type="info">
{{ selectedValue
}}<el-icon class="el-icon--right"><arrow-down /></el-icon>
</el-button>
<template #dropdown>
<el-dropdown-menu>
<el-dropdown-item
v-for="theType in items"
:key="`${theType}`"
@click="click(theType)"
>{{ theType }}</el-dropdown-item
>
</el-dropdown-menu>
</template>
</el-dropdown>
</template>
<script lang="ts" setup>
import { computed, defineEmits, ref } from 'vue'
import { ToRef } from 'vue-demi'
interface Props {
items: String[]
title: String
}
const props = defineProps<Props>()
# 定義要發(fā)送的emit事件
const emit = defineEmits(['dropDownValueChange'])
const selectedValue = ref(props.title)
const click = (theType: string) => {
console.log('clicked', theType)
selectedValue.value = theType
# 發(fā)送事件,theType就是發(fā)送出去的值
emit('dropDownValueChange', theType)
}
</script>
================父組件
<template>
<common-drop-down
title="Fruits"
:items="items"
@dropDownValueChange="fruitValueChange"
/>
</template>
<script lang="ts" setup>
import { ToRef } from "vue-demi"
const items = ['Apple', 'Orange', 'Pineapple', 'Banana']
const fruitValueChange = (e: any): void => {
console.log('in parent compoennt, e=', e)
}
</script>
這兩種方法我都在自己代碼里用過了,親測可用。優(yōu)不優(yōu)雅就另說了,先能用再說吧
總結(jié)
到此這篇關(guān)于Vue3子組件向父組件傳值的兩種實現(xiàn)方式的文章就介紹到這了,更多相關(guān)Vue3子組件向父組件傳值內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
vue中使用echarts并根據(jù)選擇條件動態(tài)展示echarts圖表
雖然老早就看過很多echarts的例子, 但自己接觸的項目中一直都沒有真正用到過,直到最近才開始真正使用,下面這篇文章主要給大家介紹了關(guān)于vue中使用echarts并根據(jù)選擇條件動態(tài)展示echarts圖表的相關(guān)資料,需要的朋友可以參考下2023-12-12
vue使用cesium創(chuàng)建數(shù)據(jù)白模方式
這篇文章主要介紹了vue使用cesium創(chuàng)建數(shù)據(jù)白模方式,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2023-10-10

