Vue3 components pass values (props)
Parent component passes value to child component
In the parent component:
1.Introduce ref
2. Define the attributes and attribute values to be passed
3. Pass the attribute attribute to the sub-component in the vue page
Pass attributes
: The name passed to the child component (customized) = "Corresponding to the attribute name defined in the parent component"
In the child component:
4. Receive the properties from the parent component
props: { showDialogVisible: Boolean }, setup() { return { } }
5. Register the component
setup(props) { // 可以打印查看一下props传过来的属性以及属性的值 console.log(props); return { props } }
6. In the child component The page uses this attribute
#The parent component passes the value to the child component complete!
Subcomponent passes value to parent component (regular)
In subcomponent:
Since vue data transfer is a one-way data flow, the child component does not have the right to modify the data passed by the parent component. It can only request the parent component to modify the original data, and use emit to notify the parent component to modify it.
1. Define the value of the property (or method) of the parent component that you want to modify in the child component
setup(props,context) { context.emit('setShow', false); return { } } //也可以:es6解构赋值取到emit //setup(props,{emit}) { // emit('setShow', false); // // return { // } //}
context.emit(‘Pass in the parent component’s custom property name ’, attribute value);
In the parent component:
2. Receive on the page The custom property name passed in the child component is bound to its corresponding property (method)
The parent component passes the value to the child component complete!
Attach my parent component method:
The child component passes the value to the parent component (v-model)
IfThe value passed by the child component to the parent component is exactly the value passed by the parent component to the child component , and two-way binding can be performed directly on this attribute.
Note: Before reading this section, it is recommended to read the first section: Parent component passes value to child component
In the child component Above:
#1. Directly modify the properties obtained from props
On the parent component:
2. Bind on the child component in the parent page
Value transfer completed!
Value transfer and event processing between vue3 components
I also searched for information online before writing this article, and found that there is very little information about it, so I’d better record it myself
The project requirement is that each page needs to add a top navigation bar and a return event
First write the sub-component code and create a nav.vue file in the components directory:
Subcomponent nav.vue file content
<template> <div> <el-affix position="top" :offset="0"> <div class="nav"> <span @click="backGo"><img src="/static/imghwm/default1.png" data-src="../assets/back.png" class="lazy" / alt="How to transfer values between components in vue3" >返回</span> <p>{{title}}</p> </div> </el-affix> </div> </template> <script setup> import{ defineProps } from "vue" const props =defineProps({ //子组件定义接收父组件传过来的值 title:String }) //点击返回事件 const backGo = () => { history.back() } </script> <style scoped> .nav{width: 100%;height:.6rem;display: flex;align-items: center;justify-content: center;text-align: center;position: relative;background-color: #ffffff;border-bottom: 1px solid #f0f0f0;} .nav span{position: absolute;height:100%;left: .2rem;top: 0;display: flex;align-items: center;color: #8a8a8a;} .nav span img{width: .32rem;} </style>
Parent component aboutus.vue file:
<template> <div class="wrap"> <Nav title="关于我们"></Nav> <!--记住这里第一个字母大写哦--> <div class="lists"> <ul class="abus"> <li><p><router-link to="/company">公司介绍</router-link></p></li> <li><p><router-link to="/privacy">隐私政策</router-link></p></li> <li><p><router-link to="/useragree">用户协议</router-link></p></li> </ul> </div> </div> </template> <script setup> import Nav from '@/components/nav.vue' </script>
Remember to capitalize the first letter when introducing subcomponents!
Is not it simple!
The following introduces the sub-component value transfer
The same is done with the sub-component nav.vue to test, directly enter the code:
<template> <div> <el-affix position="top" :offset="0"> <div class="nav"> <span @click="backGo"><img src="/static/imghwm/default1.png" data-src="../assets/back.png" class="lazy" / alt="How to transfer values between components in vue3" >返回</span> <p>{{title}}</p> </div> </el-affix> </div> </template> <script setup> import{ defineProps ,defineEmits} from "vue" const emits =defineEmits(['getBackGo']) //注册父组件回调方法 const props =defineProps({ title:String }) const backGo = () => { // history.back() emits("getBackGo","传个值给父组件!") } </script> <style scoped> .nav{width: 100%;height:.6rem;display: flex;align-items: center;justify-content: center;text-align: center;position: relative;background-color: #ffffff;border-bottom: 1px solid #f0f0f0;} .nav span{position: absolute;height:100%;left: .2rem;top: 0;display: flex;align-items: center;color: #8a8a8a;} .nav span img{width: .32rem;} </style>
Let’s take a look at the writing method of the parent component aboutus.vue:
<template> <div class="wrap"> <Nav title="关于我们" @getBackGo="getBackGoInfo"></Nav> <img class="logo lazy" src="/static/imghwm/default1.png" data-src="../../assets/logo.jpg" / alt="How to transfer values between components in vue3" > <div class="lists"> <ul class="abus"> <li><p><router-link to="/company">公司介绍</router-link></p></li> <li><p><router-link to="/privacy">隐私政策</router-link></p></li> <li><p><router-link to="/useragree">用户协议</router-link></p></li> </ul> </div> </div> </template> <script setup> import Nav from '@/components/nav.vue' const getBackGoInfo = (value) => { console.log(value) } </script>
The effect is as follows:
The above is the detailed content of How to transfer values between components in vue3. For more information, please follow other related articles on the PHP Chinese website!

前端有没有现成的库,可以直接用来绘制 Flowable 流程图的?下面本篇文章就跟小伙伴们介绍一下这两个可以绘制 Flowable 流程图的前端库。

vue不是前端css框架,而是前端JavaScript框架。Vue是一套用于构建用户界面的渐进式JS框架,是基于MVVM设计模式的前端框架,且专注于View层。Vue.js的优点:1、体积小;2、基于虚拟DOM,有更高的运行效率;3、双向数据绑定,让开发者不用再去操作DOM对象,把更多的精力投入到业务逻辑上;4、生态丰富、学习成本低。

Vue3如何更好地使用qrcodejs生成二维码并添加文字描述?下面本篇文章给大家介绍一下Vue3+qrcodejs生成二维码并添加文字描述,希望对大家有所帮助。

本篇文章我们来了解 Vue2.X 响应式原理,然后我们来实现一个 vue 响应式原理(写的内容简单)实现步骤和注释写的很清晰,大家有兴趣可以耐心观看,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
