91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue3父子通訊方式及Vue3插槽的使用方法是什么

發布時間:2023-01-28 15:17:38 來源:億速云 閱讀:129 作者:iii 欄目:開發技術

這篇文章主要介紹了Vue3父子通訊方式及Vue3插槽的使用方法是什么的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Vue3父子通訊方式及Vue3插槽的使用方法是什么文章都會有所收獲,下面我們一起來看看吧。

Vue3父傳子(props)

父組件如下:

<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>

Vue3父子通訊方式及Vue3插槽的使用方法是什么

setup中的參數分別有:

props:值為對象,包含:組件外部傳遞過來,且組件內部聲明接收了的屬性。
context:上下文對象
attrs: 值為對象,包含:組件外部傳遞過來,但沒有在props配置中聲明的屬性, 相當于 this.$attrs。
slots: 收到的插槽內容, 相當于 this.$slots。
emit: 分發自定義事件的函數, 相當于 this.$emit

props中可以接收父組件傳遞給子組件的參數 

Vue3子傳父({emit})

父組件:

<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效果如下:

Vue3父子通訊方式及Vue3插槽的使用方法是什么

Vue3插槽

    <children :num="num" age="30" @test="showHello">
      <h2>南辰,Hello</h2>
    </children>
<template>
  <div @click="aboutClick">我是子組件 我的父組件值為:{{ yy }}</div>
  <slot></slot>
</template>

Vue3父子通訊方式及Vue3插槽的使用方法是什么

具名插槽的寫法

<slot name="aabb"></slot>
	<HelloWorld>
		<template v-slot:aabb>
			<span>NanChen,你好</span>
		</template>
		 <!-- <template #aabb>
			<span>NanChen,你好</span>
		</template> -->
	</HelloWorld>

關于“Vue3父子通訊方式及Vue3插槽的使用方法是什么”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Vue3父子通訊方式及Vue3插槽的使用方法是什么”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

元谋县| 柳河县| 会昌县| 都江堰市| 西和县| 于田县| 临沧市| 南溪县| 安乡县| 南通市| 平利县| 霞浦县| 三穗县| 抚松县| 荔浦县| 广河县| 临夏县| 务川| 探索| 双城市| 新邵县| 油尖旺区| 大荔县| 阜康市| 南平市| 句容市| 明溪县| 漳州市| 分宜县| 万载县| 佳木斯市| 建平县| 财经| 定西市| 白山市| 江达县| 光泽县| 中山市| 大同县| 广德县| 农安县|