iis服务器助手广告广告
返回顶部
首页 > 资讯 > 精选 >Vue3父子通讯方式及Vue3插槽的使用方法是什么
  • 869
分享到

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

2023-07-05 01:07:43 869人浏览 安东尼
摘要

这篇文章主要介绍了vue3父子通讯方式及Vue3插槽的使用方法是什么的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Vue3父子通讯方式及Vue3插槽的使用方法是什么文章都会有所收获,下面我们一起来看看吧。Vue

这篇文章主要介绍了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插槽的使用方法是什么”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网精选频道。

--结束END--

本文标题: Vue3父子通讯方式及Vue3插槽的使用方法是什么

本文链接: https://www.lsjlt.com/news/348688.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作