vue3中父組件與組件之間參數傳遞,使用(defineProps/defineEmits),涉及屬性傳遞,對象傳遞,數組傳遞,以及事件傳遞

来源:https://www.cnblogs.com/QsFavour/archive/2023/07/11/17544214.html
-Advertisement-
Play Games

## Vue3 中子父組件之間的通信 ### 一、父組件傳遞參數到子組件 採用defineProps #### 傳遞屬性 父組件: ```vue 這是父組件 父組件像子組件傳遞參數 傳遞屬性值 ``` 子組件: ```vue 這是子組件 屬性值接收區 父組件傳值接收區:字元型:{{ fatherMe ...


Vue3 中子父組件之間的通信

一、父組件傳遞參數到子組件 採用defineProps

傳遞屬性

父組件:

<template>
<div>
<h1>這是父組件</h1>
<h1>父組件像子組件傳遞參數</h1>
<h2>傳遞屬性值</h2>

<HH :fatherMessage="fatherMessage" :valNum="valNum" :valBool="valBool" />
</div>
</template>

<script setup>
import { ref } from "vue";
import HH from "@/components/HelloWorld";
//定義參數進行傳遞到子組件
let fatherMessage = ref("大頭"); //字元
let valNum = ref(1); //數字
let valBool = ref(true); //布爾類型

</script>

<style>
</style>

子組件:

<template>
<div>
<h1>這是子組件</h1>
<h2>屬性值接收區</h2>
<div style="margin: 5px; border: 2px solid gold">
父組件傳值接收區:字元型:{{ fatherMessage }},數字類型:{{
valNum
}},布爾類型:{{ valBool }}
</div>
</div>
</template>
<script setup>
import { defineProps, defineEmits } from "vue";
//使用defineProps接收父組件傳遞的參數
defineProps({
fatherMessage: {
type: String,
},
valNum: {
type: Number,
},
valBool: {
type: Boolean,
},
});

</script>

傳遞對象或者數組

父組件:

<template>
<div>
<h1>這是父組件</h1>
<h1>父組件像子組件傳遞參數</h1>
<h2>傳遞屬性值</h2>
<HH
:fatherMessage="fatherMessage"
:valNum="valNum"
:valBool="valBool"
:testprop="testprop"
:testprops="testpropLlist"
/>

</div>
</template>

<script setup>
import { ref, reactive } from "vue";
import HH from "@/components/HelloWorld";
let fatherMessage = ref("大頭"); //字元
let valNum = ref(1); //數字
let valBool = ref(true); //布爾類型
//定義數組
const propsList = [
{ name: "李四", Id: 1 },
{ name: "張三", Id: 2 },
{ name: "王麻子", Id: 3 },
];
//定義對象
const myObj = reactive({
name: "zs",
age: 20,
});

let testprop = ref(myObj);

let testpropLlist = ref(propsList);

</script>

<style>
</style>

子組件:

<template>
<div>
<h1>這是子組件</h1>
<h2>屬性值接收區</h2>
<div style="margin: 5px; border: 2px solid gold">
父組件傳值接收區:字元型:{{ props.fatherMessage }},數字類型:{{
props.valNum
}},布爾類型:{{ props.valBool }}
</div>
<h2>對象/數組接收區</h2>
<div style="margin: 5px; border: 2px solid rgb(77, 52, 219)">
父組件傳值接收區: 對象接收:{{ props.testprop }},數組接收:{{
props.testprops
}},數組單個值:{{ vvv }}} ,迴圈數組的值:
<ul>
<li v-for="item in props.testprops" :key="item.Id">
{{ item.name }}
</li>
</ul>
</div>

</div>
</template>
<script setup>
import { defineProps, defineEmits, toRefs } from "vue";
const props = defineProps({
fatherMessage: {
type: String,
},
valNum: {
type: Number,
},
valBool: {
type: Boolean,
},
//接收對象 對象如果要使用某個值的時候 需要用 const vvv = toRefs(props.testprop).name
testprop: {
type: Object,
},
//接收數組
testprops: {
type: Array,
default: () => [],
},
});
//獲取數組中某一個值
const vvv = toRefs(props.testprops[0]).name;


</script>


二、子組件向父組件傳遞事件 採用defineEmits

父組件:

<template>
<div>
<h1>這是父組件</h1>
<h2>事件傳遞</h2>
<HH @add="eat" />
<div style="margin: 5px; border: 2px solid gold">
子組件傳值接收區: 變化數量:{{ num }}
</div>
<HH @getvale="getstr" />
<div style="margin: 5px; border: 2px solid rgb(26, 255, 186)">
子組件傳值接收區: 參數內容獲取:{{ valstr }}
</div>
</div>
</template>

<script setup>
import { ref } from "vue";
import HH from "@/components/HelloWorld";
//事件傳遞
let valstr = ref();//接收內容
let num = ref(0);//數字加減
//觸發加減事件
const eat = (value) => {
num.value += value;
};
//通過子組件的事件向父組件傳遞參數
const getstr = (value) => {
valstr.value = value;
};
</script>

<style>
</style>

子組件:

<template>
<div>
<h1>這是子組件</h1>
<h2>自定義事件傳遞,子組件向父組件進行傳遞</h2>
<button @click="meat">點擊我</button>
<button @click="getstr">點擊我傳遞參數</button>
</div>
</template>
<script setup>
import { defineProps, defineEmits } from "vue";
const emit = defineEmits(["add"], ["getvale"]); // 自定義事件,可以自定義多個事件
const meat = () => {
// 觸發自定義事件
emit("add", 1);
};
const getstr = () => {
emit("getvale", "子組件傳過來的值");//第一個參數為事件名稱,第二個參數為參數數據
};
</script>


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 向量資料庫Faiss是Facebook AI研究院開發的一種高效的相似性搜索和聚類的庫。它能夠快速處理大規模數據,並且支持在高維空間中進行相似性搜索。本文將介紹如何搭建Faiss環境並提供一個簡單的使用示例。 ...
  • 在應用中,我們使用的 SpringData ES的 ElasticsearchRestTemplate來做查詢,使用方式不對,導致每次ES查詢時都新實例化了一個查詢對象,會載入相關類到元數據中。最終長時間運行後元數據出現記憶體溢出; ...
  • 在部分工作場景下可能會使用到達夢資料庫的數據守護功能,本文介紹達夢數據守護服務的搭建。 此次搭建使用三台機器,一主一備一監視器。其中主備資料庫需要提前初始化。一、數據準備需要保證主備庫數據一直,這裡使用dmrman離線備份還原方式進行。停止主庫,進行rman全備。 ./dmrman CTLSTMT= ...
  • 原文地址:https://blog.csdn.net/zhanglei5415/article/details/131434931 ## 一、問題 當對含有中文的url字元串,進行NSURL對象包裝時,是不能被識別的。 不會得到期望的NSURL對象,而是返回一個nil 值 ; ```objectiv ...
  • 原文地址:[Android 自定義view中根據狀態修改drawable圖片 - Stars-One的雜貨小窩](https://stars-one.site/2023/07/09/android-view-state-drawable) 本文涉及知識點: - Android里的selector圖片 ...
  • 這裡給大家分享我在網上總結出來的一些知識,希望對大家有所幫助 前端涉及到的文件下載還是很多應用場景的,那麼前端文件下載有多少種方式呢?每種方式有什麼優缺點呢?下麵就來一一介紹。 1. 使用 a 標簽下載 通過a標簽的download屬性來實現文件下載,這種方式是最簡單的,也是我們比較常用的方式,先來 ...
  • # vue基礎 - vue項目搭建 - vue單文件組件 - mustach表達式 - vue指令 - methods方法 - filters過濾器 - computed計算屬性 - watch監聽器 - vue組件 - vue-router 路由 - vue生命周期 - vue組件通信 - slo ...
  • 字元串的17種方法。。。。。。 length:返回字元串的長度。 const str = "Hello, World!"; console.log(str.length); // 輸出 13 charAt(index):返回指定索引位置的字元。 const str = "Hello, World!" ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...