您好,登錄后才能下訂單哦!
這篇文章主要介紹了Vue3父子通訊方式及Vue3插槽的使用方法是什么的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Vue3父子通訊方式及Vue3插槽的使用方法是什么文章都會有所收獲,下面我們一起來看看吧。
父組件如下:
<template> <div class="about"> <h2>This is an about page</h2> <children :num="num" age="30"></children> </div> </template> <script> import children from "../components/children.vue"; import { ref } from "vue"; export default { setup() { let num = ref("《nanchen》"); return { num, }; }, components: { children, }, }; </script>
子組件如下:
<template> <div>我是子組件 我的父組件值為:{{ yy }}</div> </template> <script> import { ref } from "vue"; export default { name: "Vue3appChildren", props: { num: { type: Number, }, }, setup(props) { let yy = ref(props.num); return { yy, }; }, mounted() {}, methods: {}, }; </script> <style lang="scss" scoped> </style>
setup中的參數分別有:
props:值為對象,包含:組件外部傳遞過來,且組件內部聲明接收了的屬性。
context:上下文對象
attrs: 值為對象,包含:組件外部傳遞過來,但沒有在props配置中聲明的屬性, 相當于 this.$attrs。
slots: 收到的插槽內容, 相當于 this.$slots。
emit: 分發自定義事件的函數, 相當于 this.$emit
props中可以接收父組件傳遞給子組件的參數
父組件:
<template> <div class="about"> <h2>This is an about page</h2> <children :num="num" age="30" @test="showHello"></children> </div> </template> <script> import children from "../components/children.vue"; import { ref } from "vue"; export default { setup() { let num = ref("《nanchen》"); function showHello(value) { console.log(value); } return { num, showHello, }; }, components: { children, }, }; </script>
子組件
<template> <div @click="aboutClick">我是子組件 我的父組件值為:{{ yy }}</div> </template> <script> import { ref } from "vue"; export default { name: "Vue3appChildren", props: { num: { type: Number, }, }, setup(props, { emit }) { let yy = ref(props.num); function aboutClick() { emit("test", "你好你好"); // 子傳父 } return { yy, aboutClick, }; }, mounted() {}, methods: {}, }; </script> <style lang="scss" scoped> </style>
點擊div效果如下:
<children :num="num" age="30" @test="showHello"> <h2>南辰,Hello</h2> </children>
<template> <div @click="aboutClick">我是子組件 我的父組件值為:{{ yy }}</div> <slot></slot> </template>
具名插槽的寫法
<slot name="aabb"></slot>
<HelloWorld> <template v-slot:aabb> <span>NanChen,你好</span> </template> <!-- <template #aabb> <span>NanChen,你好</span> </template> --> </HelloWorld>
關于“Vue3父子通訊方式及Vue3插槽的使用方法是什么”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Vue3父子通訊方式及Vue3插槽的使用方法是什么”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。