父组件是通过props属性给子组件通信的
数据是单向流动 父—>子 (子组件中修改props数据,是无效的,会有一个红色警告)
<template>
<div class="parent">
<h2>{{ msg }}h2>
<son :fa-msg="msg">son>
div>
template>
<script>
import son from './Son' //引入子组件
export default {
name: 'HelloWorld',
data () {
return {
msg: '父组件',
}
},
components:{son},
}
script>
<template>
<div class="son">
<p>{{ sonMsg }}p>
<p>子组件接收到内容:{{ faMsg }}p>
div>
template>
<script>
export default {
name: "son",
data(){
return {
sonMsg:'子组件',
}
},
props:['faMsg'],//接收psMsg值
}
script>
props: ['childCom']
props: {
childCom: String //这里指定了字符串类型,如果类型不一致会警告的哦
}
props: {
childCom: {
type: String,
default: 'sichaoyun'
}
}
通过绑定事件然后及$emit传值
vue2.0只允许单向数据传递,我们通过出发事件来改变组件的数据
1.父组件parent代码如下:
<template>
<div class="parent">
<h2>{{ msg }}h2>
<p>父组件接手到的内容:{{ username }}p>
<son psMsg="我是你爸爸" @transfer="getUser">son>
div>
template>
<script>
import son from './Son'
export default {
name: 'HelloWorld',
data () {
return {
msg: '父组件',
username:'',
}
},
components:{son},
methods:{
getUser(msg){
this.username= msg
}
}
}
script>
父组件通过绑定自定义事件,接受子组件传递过来的参数
2.子组件son代码如下:
<template>
<div class="son">
<p>{{ sonMsg }}p>
<p>子组件接收到内容:{{ psMsg }}p>
<button @click="setUser">传值button>
div>
template>
<script>
export default {
name: "son",
data(){
return {
sonMsg:'子组件',
user:'子传父的内容'
}
},
props:['psMsg'],
methods:{
setUser:function(){
this.$emit('transfer',this.user)//触发transfer方法,this.user 为向父组件传递的数据
}
}
}
script>
子组件通过$emit触发父组件上的自定义事件,发送参数
假设你有两个Vue组件需要通信: A 和 B ,A组件按钮上面绑定了点击事件,发送一则消息,B组件接收。
直接在项目中的 main.js 初始化 $bus :
// main.js
window.$bus=new Vue();
注意,这种方式初始化一个全局的bus 。
$bus.$emit("aMsg", '来自A页面的消息');
<template>
<button @click="sendMsg()">-button>
template>
<script>
//import $bus from "../bus.js";
export default {
methods: {
sendMsg() {
$bus.$emit("aMsg", '来自A页面的消息');
}
}
};
script>
接下来,我们需要在 B页面 中接收这则消息。
$bus.$on("事件名",callback)
<template>
<p>{{msg}}p>
template>
<script>
//import $bus from "../bus.js";
export default {
data(){
return {
msg: ''
}
},
mounted() {
$bus.$on("aMsg", (msg) => {
// A发送来的消息
this.msg = msg;
});
}
};
script>
集中式的事件中间件就是 Bus。我习惯将bus定义到全局:
app.js
var eventBus = {
install(Vue,options) {
Vue.prototype.$bus = vue
}
};
Vue.use(eventBus);
然后在组件中,可以使用$emit, $on, $off 分别来分发、监听、取消监听事件:
methods: {
todo: function () {
this.$bus.$emit('todoSth', params); //params是传递的参数
}
}
created() {
this.$bus.$on('todoSth', (params) => { //获取传递的参数并进行操作
//todo something
})
},
// 最好在组件销毁前
// 清除事件监听
beforeDestroy () {
this.$bus.$off('todoSth');
}
如果需要监听多个组件,只需要更改 bus 的 eventName:
created() {
this.$bus.$on('firstTodo', this.firstTodo);
this.$bus.$on('secondTodo', this.secondTodo);
},
// 清除事件监听
beforeDestroy () {
this.$bus.$off('firstTodo', this.firstTodo);
this.$bus.$off('secondTodo', this.secondTodo);
}
1.父传子:
在父组件的子组件标签上绑定一个属性,挂载要传输的变量。在子组件中通过props来接受数据,props可以是数组也可以是对象,接受的数据可以直接使用 Bus.$off(“事件名”)
2.子传父:
vue2.0只允许单向数据传递,我们通过出发事件来改变组件的数据
在父组件的子组件标签上通过绑定自定义事件,接受子组件传递过来的事件。子组件通过$emit触发父组件上的自定义事件,发送参数(第一个是要改变的属性值,第二个是要发送的参数)
3.兄弟组件传值:
通过main.js初始化一个全局的$bus,在发送事件的一方通过$bus.$emit(“事件名”,传递的参数信息)发送,在接收事件的一方通过$bus.$on("事件名",参数)接收传递的事件
Bus.$on(“事件名”)