Vue父子组件互相传值
2021/4/25 18:58:13
本文主要是介绍Vue父子组件互相传值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、父组件向子组件传值
父组件
<template> <view class="content"> <view>父组件</view> <Com :msg="flag" :str="str" :num="num" :arr="arr" :obj="obj"></Com> </view> </template> <script> import Com from '../../../components/com.vue' export default { data() { return { flag:true, str:'skskks', num:100, arr:[ { name:'lika', isAct:false }, { name:'like', isAct:false } ], obj:{ a:1 } } }, components:{ Com }, onl oad() { } } </script>
子组件
<template> <view class="com"> 子组件 -- {{ msg }} -- {{ str }} -- {{ num }} -- {{ arr }} -- {{ obj }} </view> </template> <script> export default { data() { return { } }, props:{ msg:{ type:Boolean, default:false }, str:{ type:String, default:'120' }, num:{ type:Number, default:0 }, arr:{ type:Array, default:[] }, obj:{ type:Object, default:{} } }, methods:{ } } </script> <style> .com{ color: #007AFF; font-weight: 600; } </style>
二、子组件向父组件传值
父组件
<template> <view class="content"> <view>父组件</view> <Com @ChildToFather="handleFather"></Com> </view> </template> <script> import Com from '../../../components/com.vue' export default { data() { return { } }, components:{ Com }, onl oad() { }, methods:{ handleFather(params) { console.log('这是父组件的方法'); console.log('以下是子组件传递过来的值') console.log(params) } } } </script>
子组件
<template> <view class="com"> 子组件 <view class="two" @click="handleChild"> 传值 </view> </view> </template> <script> export default { data() { return { } }, methods:{ handleChild() { let params = [ { name:'lika', isAct:false }, { name:'like', isAct:true } ] this.$emit('ChildToFather',params); } } } </script>
这篇关于Vue父子组件互相传值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-21Vue3教程:新手入门到实践应用
- 2024-12-21VueRouter4教程:从入门到实践
- 2024-12-20Vue3项目实战:从入门到上手
- 2024-12-20Vue3项目实战:新手入门教程
- 2024-12-20VueRouter4项目实战:新手入门教程
- 2024-12-20如何实现JDBC和jsp的关系?-icode9专业技术文章分享
- 2024-12-20Vue项目中实现TagsView标签栏导航的简单教程
- 2024-12-20Vue3入门教程:从零开始搭建你的第一个Vue3项目
- 2024-12-20从零开始学习vueRouter4:基础教程
- 2024-12-20Vuex4课程:新手入门到上手实战全攻略