Vue前端框架11 组件事件与v-mode配合使用、组件数据传递(父传子)、插槽Slot、具名插槽、插槽中的数据传递(双向)

文章目录

    • 一、组件事件与v-model配合使用
    • 二、组件数据传递(子传父)
    • 三、插槽Slots
    • 四、具名插槽
    • 五、插槽中的数据传递

一、组件事件与v-model配合使用

组件A的数据变化
组件B可以实时显示

<template><h3>Main</h3><p>搜索内容为:{{search}}</p><component-b @searchEvent="getSearch"></component-b>
</template><script>
import ComponentB from "@/components/componentB";
export default {name: "componentA",components: {ComponentB},data(){return{search:""}},methods:{getSearch(data){this.search=data}}
}
</script><style scoped></style>
<template>搜索: <input type="text" v-model="search">
</template><script>
export default {name: "componentB",data(){return{search:""}},//侦听器watch:{search(newvValue,oldValue){console.log(oldValue)this.$emit("searchEvent",newvValue)}}
}
</script><style scoped></style>

二、组件数据传递(子传父)

利用父组件的函数回调

<template><h3>Main</h3><p>搜索内容为:{{search}}</p><component-b @searchEvent="getSearch" :onEvent="dataFn"></component-b><p>this:{{message}}</p>
</template><script>
import ComponentB from "@/components/componentB";
export default {name: "componentA",components: {ComponentB},data(){return{search:"",message:""}},methods:{getSearch(data){this.search=data},dataFn(data){this.message=data}}
}
</script><style scoped></style>
<template>搜索: <input type="text" v-model="search"><p>{{onEvent(age)}}</p>
</template><script>
export default {name: "componentB",data(){return{search:"",age:22}},//侦听器watch:{search(newvValue,oldValue){console.log(oldValue)this.$emit("searchEvent",newvValue)}},props:{onEvent:Function}
}
</script><style scoped></style>

三、插槽Slots

解决的是组件传输一个完整的html结构 也就是一个模板内容

<template><parent-demo></parent-demo><component-a></component-a><slot-demo><div><h3>插槽标题</h3>
<!--      插槽内容不是写死的 而是动态的--><p>{{ message }}</p></div></slot-demo>
</template><script>import ParentDemo from "@/components/parentDemo";
import ComponentA from "@/components/componentA";
import SlotDemo from "@/components/slotDemo";
export default {name: 'App',components: {SlotDemo, ComponentA, ParentDemo},data(){return{message:"hello"}}
}
</script><style>
#app {font-family: Avenir, Helvetica, Arial, sans-serif;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-align: center;color: #2c3e50;margin-top: 60px;
}
</style>
<template><h3>插槽基础知识</h3>
<!--  slot 是一个插槽的出口 标示了 父元素提供的插槽内容将要在哪里被渲染 -->
<!--  如果没有传插槽 在标签中间的内容 就是默认值--><slot>插槽默认值</slot>
</template><script>
export default {name: "slotDemo"
}
</script><style scoped></style>

四、具名插槽

<template><parent-demo></parent-demo><component-a></component-a><slot-demo>
<!--   通过template中的 v-slot属性 和 slot标签的 name对应 -->
<!--    v-slot的简写 可以 简写为# --><template v-slot:header><h3>插槽标题</h3></template><template #main><p>{{ message }}</p></template></slot-demo>
</template><script>import ParentDemo from "@/components/parentDemo";
import ComponentA from "@/components/componentA";
import SlotDemo from "@/components/slotDemo";
export default {name: 'App',components: {SlotDemo, ComponentA, ParentDemo},data(){return{message:"hello"}}
}
</script><style>
#app {font-family: Avenir, Helvetica, Arial, sans-serif;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-align: center;color: #2c3e50;margin-top: 60px;
}
</style>
<template><h3>插槽基础知识</h3>
<!--  slot 是一个插槽的出口 标示了 父元素提供的插槽内容将要在哪里被渲染 -->
<!--  如果没有传插槽 在标签中间的内容 就是默认值--><slot name="header">插槽默认值</slot><hr><slot name="main"></slot>
</template><script>
export default {name: "slotDemo"
}
</script><style scoped></style>

五、插槽中的数据传递

在某些情况下,插槽的内容可能同时需要用到父子两个组件的数据,所以需要方法将子组件在渲染时候将一部分数据提供给插槽

<template><parent-demo></parent-demo><component-a></component-a><slot-demo>
<!--   通过template中的 v-slot属性 和 slot标签的 name对应 -->
<!--    v-slot的简写 可以 简写为# --><template v-slot:header><h3>插槽标题</h3></template><template #main><p>{{ message }}</p></template></slot-demo><SlotAttr>
<!--    建议指明对应的插槽名称--><template v-slot:main="slotProps"><p>{{currentTest}}</p><p>{{slotProps.msg}}</p></template></SlotAttr>
</template><script>import ParentDemo from "@/components/parentDemo";
import ComponentA from "@/components/componentA";
import SlotDemo from "@/components/slotDemo";
import SlotAttr from "@/components/slotAttr";
export default {name: 'App',components: {SlotAttr, SlotDemo, ComponentA, ParentDemo},data(){return{message:"hello",currentTest:"测试内容"}}
}
</script>
<template><h3>插槽plus</h3>
<!--  子元素的数据想要显示 则需要将数据传给父元素父元素接收后和父元素原本的内容 一起传给子元素
--><slot :msg="childMessage" name="main"></slot>
</template><script>
export default {name: "slotAttr",data(){return{childMessage:"子组件数据"}}
}
</script><style scoped></style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/79294.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Postman使用_Tests Script(断言测试)

断言测试可以在Collection、Folder和Request的 pre-request script 和 test script中编写&#xff0c;测试脚本可以检测请求响应的各个方面&#xff0c;包括正文、状态代码、头、cookie、响应时间等&#xff0c;只有测试符合自定义的要求后才能通过。 pm对象提供了测试相关功能…

常用的8位单片机+2.4g遥控芯片的“化学”反应

8位单片机通常是微控制器&#xff0c;它们具有相对简单的处理能力&#xff0c;但对于许多嵌入式系统和低复杂度应用而言&#xff0c;它们足够使用。这些芯片通常具有较低的功耗&#xff0c;价格相对实惠。 2.4GHz无线通信芯片&#xff0c;则具备强大的无线通信能力。它们可以实…

golang获取时区报错的问题

golang<1.20版本的time包 time.LoadLocation(timezone) 读取某些时区会报错&#xff0c;升级到1.20可以解决 顺便&#xff0c;某些开发把error直接置为_隐藏掉的习惯真的差评 func Test3(t *testing.T) {timezone : "America/Ciudad_Juarez"timezone "Euro…

van-button根据参数改变字体颜色,实现高度自定义

本来van-button没有属性去单独自定义字体颜色。通过研究&#xff0c;我发现可以通过:style来实现这一需求。 <van-button class"case-btn" :color"item.BtnBgColor":style"{ color : item.BtnColor }"click"jumpToUrl(item)" >…

datax同步clickhouse数据到hive

1.准备数据 1.1 clickhouse建表并插入数据 CREATE TABLE cell_towers_10 (radio Enum8( = 0, CDMA = 1,

windows 下docker安装宝塔镜像 宝塔docker获取镜像

1. docker 安装宝塔 打开链接&#xff1a;https://www.docker.com/get-started&#xff0c;找对应的版本下载docker&#xff0c;安装docker打开百度云盘&#xff1a;链接&#xff1a;https://pan.baidu.com/s/1DGIjpKkNDAmy4roaKGLA_w 提取码&#xff1a;u8bi 2. 设置镜像 点…

java设计模式之观察者模式

. 基本概念 观察者&#xff08;Observer&#xff09;模式中包含两种对象&#xff0c;分别是目标对象和观察者对象。在目标对象和观察者对象间存在着一种一对多的对应关系&#xff0c;当这个目标对象的状态发生变化时&#xff0c;所有依赖于它的观察者对象都会得到通知并执行它…

网页结构基础

网页结构解析是指对网页进行分析和解析&#xff0c;提取出其中的各个组成部分&#xff0c;如标签、元素、属性等。通过网页结构解析&#xff0c;可以对网页进行进一步处理和操作。 HTML&#xff08;超文本标记语言&#xff09;&#xff1a;HTML用于定义网页的结构和内容。常见的…

1、MongoDb综述

1. MongoDb综述 1.1. 什么是Nosql NoSQL&#xff1a;Not Only SQL ,本质也是一种数据库的技术&#xff0c;相对于传统数据库技术&#xff0c;它不会遵循一些约束&#xff0c;比如&#xff1a;sql标准、ACID属性&#xff0c;表结构等。 Nosql优点 l 满足对数据库的高并发读写…

创建查询系统,提升工作效率

今天我要和大家分享一个非常实用的小技巧&#xff0c;能够让老师们在短短三分钟内创建一个非常方便的查询系统&#xff01;是的&#xff0c;通过使用易查分这个神奇的工具&#xff0c;你可以轻松满足各种查询需求&#xff01; 首先&#xff0c;老师们只需要注册一个易查分账号。…

使用两个队列模拟栈

整体思路如下图&#xff1a; 代码实现 import java.util.LinkedList; import java.util.Queue; import java.util.Scanner;/*** author: Arbicoral* Description: 使用2个队列模拟栈的 push() pop() top(), 自己实现打印 print()*/ public class QueueMoniStack2 {public stati…

uniapp 模糊搜索(小白必看)

实现模糊搜索很简单,按照下面的步骤: 1. 搜索栏 <view class"search-box"><uni-search-bar class"uni-mt-10" radius"100" placeholder"请输入移交信息" clearButton"auto" bgColor"#F8F8F8"cancelBut…

SpringMvc决战-【SpringMVC之自定义注解】

目录 一、前言 1.1.什么是注解 1.2.注解的用处 1.3.注解的原理 二.注解父类 1.注解包括那些 2.JDK基本注解 3. JDK元注解 4.自定义注解 5.如何使用自定义注解&#xff08;包括&#xff1a;注解标记【没有任何东西】&#xff0c;元数据注解&#xff09;&#xff1f; 三…

Linux下使用lookbusy加载cpu负载

Lookbusy 是一个用于在 Linux 系统上生成合成负载的简单应用程序。它可以在 CPU 上生成固定的、可预测的负载&#xff0c;保持选定数量的内存处于活动状态&#xff0c;并生成您需要的任意数量的磁盘流量。 官方地址&#xff1a;lookbusy -- a synthetic load generator 编译 …

Java面试八股文宝典:初识数据结构-数组

数组&#xff08;Array&#xff09; 数组是计算机编程中最基本的数据结构之一。它是一个有序的元素集合&#xff0c;每个元素都可以通过索引进行访问。本文将详细介绍数组的特性、用法和注意事项。 数组的基本特性 数组具有以下基本特性&#xff1a; 有序性&#xff1a; 数…

@ControllerAdvice和@RestControllerAdivice的区别

在使用Spring框架时&#xff0c;我们经常会遇到需要处理异常的情况。而ControllerAdvice和RestControllerAdvice就是两种处理异常的方式。虽然它们的名字看起来很相似&#xff0c;但实际上有一些区别。 ControllerAdvice是用来处理Controller层抛出的异常的。当Controller层抛…

Article Forge:AI写作文章内容生成器

【产品介绍】 名称 Article Forge 成立/上线时间 2022年 具体描述 Article Forge是一款基于人工智能和深度学习的AI写作文章内容生成器&#xff0c;可以自动写出1500字的文章无论是产品描述&#xff0c;还是整篇博客文章&#xff0c;Article Forge都能在一…

堆与栈的区别

OVERVIEW 栈与堆的区别一、程序内存分区中的堆与栈1.栈2.堆3.堆&栈 二、数据结构中的堆与栈1.栈2.堆 三、堆的深入1.堆插入2.堆删除&#xff1a;3.堆建立&#xff1a;4.堆排序&#xff1a;5.堆实现优先队列&#xff1a;6.堆与栈的相关练习 栈与堆的区别 自整理&#xff0c;…

Stable Diffusion代码简介

Stable Diffusion是一个开源的实时数据流处理引擎&#xff0c;用于处理流式数据。其web UI提供了一个可视化界面来展示数据流的处理过程。 以下是Stable Diffusion web UI的详细代码说明&#xff1a; 1. 界面设计 Stable Diffusion web UI使用React框架进行开发&#xff0c;…

竞赛 基于机器视觉的车道线检测

文章目录 1 前言2 先上成果3 车道线4 问题抽象(建立模型)5 帧掩码(Frame Mask)6 车道检测的图像预处理7 图像阈值化8 霍夫线变换9 实现车道检测9.1 帧掩码创建9.2 图像预处理9.2.1 图像阈值化9.2.2 霍夫线变换 最后 1 前言 &#x1f525; 优质竞赛项目系列&#xff0c;今天要分…