前言
vue中的组件传值大家应该都不陌生,今天用几个简单易懂的小案例教大家在项目中如何使用父子传值、子父传值以及兄弟传值实现组件之间的交互。
实现思路
父子传值: 在父组件中给子组件标签上绑定一个属性, 属性上挂载需要传递的值,在子组件通过 props:['自定义属性名']
来接收数据。
子父传值: 在子组件中自定义一个事件,调用这个事件后,子组件通过 this.$emit('自定义事件名',要传递的数据)
发送父组件可以监听的数据,最后父组件监听子组件事件,调用事件并接收传递过来的数据。
兄弟传值: 在第一个组件中使用 $bus
传递自定义方法或者参数,然后在另一个同级组件中通过 $on
接收传过来的方法和参数。
话不多说,下面进入实战
父子传值
本篇小实例主要是模拟父组件向子组件传递数据的情况。
- 父组件 index.vue
<template>
<!-- 父组件 -->
<div>
<Child :message="informtion"></Child>
</div>
</template>
<script>
// 引入子组件
import Child from "./subassembly/seed.vue";
export default {
data() {
return {
informtion: "传递给子组件的数据", //要传递给子组件的数据
};
},
//一定要注册组件
components: {
Child,
},
};
</script>
- 子组件 seed.vue
<template>
<!-- 子组件 -->
<h2>我是子组件<br />接收父组件值:{{ value }}</h2>
</template>
<script>
export default {
data() {
return {
value: "",//接收的值
};
},
props: {
// message用于接收
message: {
type: String, //验证类型,也可以验证其他类型
default: "", //如果父组件传值,则用父组件的值渲染,反之使用默认值
},
},
watch: {
message: {
handler(newName, oldName) {
this.value = newName;
},
deep: true, //深度监听
immediate: true, //首次绑定的时候,是否执行 handler
},
},
};
</script>
实现效果
子父传值
本篇小实例主要是模拟子组件向父组件传递数据的情况。
- seed.vue 子组件
<template>
<!-- 子组件 -->
<button @click="seedOnclick">我是子组件的按钮</button>
</template>
<script>
export default {
data() {
return {
seedCode: "Romantic never die!", //子传父要传递的值
};
},
methods: {
// 子组件事件方法
seedOnclick() {
this.$emit("seed", this.seedCode); //参数1:自定义事件 参数2:要传递的值
},
},
};
</script>
- index.vue 父组件
<template>
<!-- 父组件 -->
<div>
<Child @seed="seedAccept"></Child>
</div>
</template>
<script>
// 引入子组件
import Child from "./subassembly/seed.vue";
export default {
//一定要注册组件
components: {
Child,
},
methods: {
seedAccept(data) {
console.log(data, "子组件传给父组件的值");
},
},
};
</script>
实现效果
子组件如何调用父组件的方法?
1. $parent方法
$parent
方法是直接在子组件中通过 this.$parent.event
调用父组件的方法,如下:
- 父组件
<template>
<div>
<!-- 子组件标签 -->
<child></child>
</div>
</template>
<script>
import child from "./dialog/dialog"; //引入子组件
export default {
components: {
// 注册组件
child,
},
methods: {
//父组件方法
parentMethod() {
console.log("子组件点击后触发此方法");
},
},
};
</script>
- 子组件
<template>
<div>
<button @click="childOnclick()">子组件点击事件</button>
</div>
</template>
<script>
export default {
methods: {
// 子组件点击事件
childOnclick() {
// 通过$parent方法调用父组件方法
this.$parent.parentMethod();
},
},
};
</script>
2. $emit方法
$emit
方法是在子组件里用 $emit
向父组件触发一个事件,父组件监听这个事件即可,如下:
- 父组件
<template>
<div>
<!-- 子组件标签 -->
<child @fatherMethod="parentMethod"></child>
</div>
</template>
<script>
import child from "./dialog/dialog"; //引入子组件
export default {
components: {
// 注册组件
child,
},
methods: {
//父组件方法
parentMethod() {
console.log("子组件点击后触发此方法");
},
},
};
</script>
- 子组件
<template>
<div>
<button @click="childOnclick()">子组件点击事件</button>
</div>
</template>
<script>
export default {
methods: {
// 子组件点击事件
childOnclick() {
// 通过$emit方法调用父组件方法
this.$emit("fatherMethod");
},
},
};
</script>
3. 将方法传入子组件中
简单来说就是在父组件把方法传入子组件内,然后再在子组件中调用这个方法,如下:
- 父组件
<template>
<div>
<!-- fatherMethod 传递的方法-->
<child :fatherMethod="parentMethod"></child>
</div>
</template>
<script>
import child from "./dialog/dialog"; //引入子组件
export default {
components: {
// 注册组件
child,
},
methods: {
//父组件方法
parentMethod() {
console.log("子组件点击后触发此方法");
},
},
};
</script>
- 子组件
<template>
<div>
<button @click="childOnclick()">子组件点击事件</button>
</div>
</template>
<script>
export default {
props: {
fatherMethod: {
type: Function, //验证类型,也可以验证其他类型
default: null, //如果父组件传值,则用父组件的值渲染,反之使用默认值
},
},
methods: {
// 子组件点击事件
childOnclick() {
if (this.fatherMethod) {
this.fatherMethod();
}
},
},
};
</script>
兄弟传值
本篇小实例主要是模拟同级组件间传递数据及调用方法的情况。
1. 全局注册
1.1 安装
npm install --save vue-bus
cnpm install --save vue-bus
1.2 引入并注册
// main.js
import VueBus from 'vue-bus'
Vue.use(VueBus)
1.3 使用
- seed.vue 子组件1
<template>
<div>
<h3>子组件1</h3>
<el-button type="primary" size="mini" @click="firstly">点击传值</el-button>
</div>
</template>
<script>
export default {
data() {
return {
message: "子组件1定义的变量",
};
},
methods: {
firstly() {
// 传了一个自定义方法 getTargetPointBUS 和参数 this.message
this.$bus.$emit("getTargetPointBUS", this.message);
},
},
};
</script>
- sons.vue 子组件2
<template>
<div>
<h3>子组件2<br />接收子组件1的值:{{ message }}</h3>
</div>
</template>
<script>
export default {
data() {
return {
message: "",
};
},
mounted() {
// 触发自定义方法 getTargetPointBUS,同时触发自身的方法 getTargetPoint
this.$bus.on("getTargetPointBUS", (data) => {
console.log(data, "子组件1传的值");
this.message = data;
this.getTargetPoint(data);
});
},
//组件销毁接触事件绑定
destroyed: function () {
this.$bus.off("getTargetPointBUS");
},
methods: {
// 触发方法
getTargetPoint(data) {
console.log("触发子组件2方法");
},
},
};
</script>
- index.vue 父组件
<template>
<!-- 父组件 -->
<div>
<Child></Child>
<Electronic></Electronic>
</div>
</template>
<script>
// 引入子组件
import Child from "./subassembly/seed.vue";
import Electronic from "./subassembly/sons.vue";
export default {
//一定要注册组件
components: {
Child,
Electronic,
},
};
</script>
2. 局部注册
2.1 新建一个 eventBus.js 文件
import Vue from 'vue'
const eventBus = new Vue()
export default eventBus
2.2 在使用的组件中引入
import eventBus from "../eventBus";
2.3 使用
- seed.vue 子组件1
<template>
<div>
<h3>子组件1</h3>
<el-button type="primary" size="mini" @click="firstly">点击传值</el-button>
</div>
</template>
<script>
import eventBus from "../eventBus";
export default {
data() {
return {
message: "子组件1定义的变量",
};
},
methods: {
firstly() {
// 传了一个自定义方法 getTargetPointBUS 和参数 this.message
eventBus.$emit("getTargetPointBUS", this.message);
},
},
};
</script>
- sons.vue 子组件2
<template>
<div>
<h3>子组件2<br />接收子组件1的值:{{ message }}</h3>
</div>
</template>
<script>
import eventBus from "../eventBus";
export default {
data() {
return {
message: "",
};
},
mounted() {
// 触发自定义方法 getTargetPointBUS,同时触发自身的方法 getTargetPoint
eventBus.$on("getTargetPointBUS", (data) => {
console.log(data, "子组件1传的值");
this.message = data;
this.getTargetPoint(data);
});
},
//组件销毁接触事件绑定
destroyed: function () {
eventBus.$off("getTargetPointBUS");
},
methods: {
// 触发方法
getTargetPoint(data) {
console.log("触发子组件2方法");
},
},
};
</script>
- index.vue 父组件
<template>
<!-- 父组件 -->
<div>
<Child></Child>
<Electronic></Electronic>
</div>
</template>
<script>
// 引入子组件
import Child from "./subassembly/seed.vue";
import Electronic from "./subassembly/sons.vue";
export default {
//一定要注册组件
components: {
Child,
Electronic,
},
};
</script>
实现效果
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/79398.html