子组件中定义
props
字段,类型为Array
(如需限制字段值类型,也可以定义为Object
的形式)。如下例子,父组件挂载子组件helloWorld
,在组件标签上给title
赋值,子组件helloWorld
定义了props
属性,里面有一个值是title
,这样子组件就可以使用父组件传递过来的值了。
home.vue
hello-world.vue
{{ title }}
文档传送门
属性名 | 值 | 描述 |
---|---|---|
type | javaScript 数据类型 |
限制props 的类型 |
default | 默认值 | props 的默认值 |
required | Boolean |
是否必须 true 为必须 |
validator | 回调函数 默认参数为props 的值 |
对props 的值做处理 返回值必须是Boolean |
{{ title }}
子组件传值给父组件,需要在子组件中触发一个事件,在事件中,调用$emit(‘父组件的方法名’, ‘传递的值’),然后在父组件中,通过在子组件标签上自定义事件函数,接收传递过来的值。
home.vue
hello-world.vue
{{ age }}
在$emit
的第一个参数后面添加,父组件按顺序接收。或者直接传递一个Object
。
// 子组件
this.$emit("childEvent", this.age, 'xxx', 'xxxx')
// or
this.$emit("childEvent", { a: 1, b: 2 })
// 父组件
parentEvent(value1, value2) {
console.log(value1)
console.log(value2)
}
home.vue
hello-world.vue
{{ age }}
允许一个祖先组件向其所有子孙后代注入一个依赖,不论组件层次有多深,并在其上下游关系成立的时间里始终生效。注意:provide 和 inject 绑定并不是可响应的,然而,如果你传入了一个可监听的对象,那么其对象的 property 还是可响应的
ancestor.vue
<template>
<div id="ancestor">
<Parent :keys="keys" />
</div>
</template>
<script>
import Parent from '../../components/parent'
export default {
name: 'ancestor',
components: {
Parent
},
provide() {
return {
obj: this.obj
}
},
data() {
return {
title: 'ancestor',
keys: 1998,
obj: {
set: 'hello provide'
}
}
}
}
</script>
parent.vue
<template>
<div id="parent">
<div class="head_box">
<Son :value="index" />
</div>
</div>
</template>
<script>
import Son from '../son'
export default {
name: 'parent',
components: {
Title
},
data() {
return {
index: 'WoW'
}
}
}
</script>
son.vue
<template>
<div id="son">
<div class="title_box">
<p>我是 {{ obj.set }}</p>
</div>
</div>
</template>
<script>
export default {
name: 'son',
inject: {
obj: {
from: 'Communication',
default: {}
}
},
data() {
return {
index: 1
}
}
}
</script>
在子组件标签上写上ref属性,父组件通过this. r e f s . n a m e . 方法名或者 t h i s . refs.name.方法名或者this. refs.name.方法名或者this.refs.name.属性名的方式可以访问子组件的数据和方法
parent.vue
<template>
<div>
<Son :title="msg" ref="hello" />
<button @click="parentEvent">我是父亲</button>
</div>
</template>
<script>
import Son from "../components/son.vue";
export default {
name: "parent",
data() {
return {
msg: "搜索音乐",
};
},
methods: {
parentEvent() {
this.$refs.hello.add();
console.log(this.$refs.hello.age);
},
},
components: {
HelloWorld
},
};
</script>
son.vue
<template>
<div class="hello">
<h1>{{ title }}</h1>
</div>
</template>
<script>
export default {
name: "HelloWorld",
props: ["title"],
data() {
return {
age:18
}
},
methods: {
add(){
console.log("我是子组件")
}
}
}
</script>
在子组件中,可以使用 p a r e n t 访问其上级父组件的数据和方法。如果是多重嵌套,也可以使用多层 parent访问其上级父组件的数据和方法。如果是多重嵌套,也可以使用多层 parent访问其上级父组件的数据和方法。如果是多重嵌套,也可以使用多层parent层层往上。
parent.vue
<template>
<div>
<Son :title="msg" ref="hello" />
</div>
</template>
<script>
import Son from "../components/son.vue";
export default {
name: "parent",
components: {
Son
},
data() {
return {
msg: "搜索音乐",
};
},
methods: {
parentEvent() {
console.log("我是父组件的方法");
},
}
}
</script>
son.vue
<template>
<div class="hello">
<h1 @click="add">{{ title }}</h1>
</div>
</template>
<script>
export default {
name: "HelloWorld",
props: ["title"],
data() {
return {
age:18
};
},
methods: {
add(){
console.log(this.$parent.msg)
this.$parent.parentEvent();
}
},
};
</script>
注:如果要找父组件的父组件,this. p a r e n t . parent. parent.parent.xxx,如此类推
a t t r s 包含了父作用域中不作为 p r o p 被识别获取的 a t t r i b u t e 绑定 ( c l a s s 和 s t y l e 除外 ) ,而 attrs包含了父作用域中不作为prop被识别获取的 attribute 绑定(class 和 style 除外),而 attrs包含了父作用域中不作为prop被识别获取的attribute绑定(class和style除外),而listeners则包含了父作用域中的 (不含 .native 修饰器的) v-on 事件监听器
ancestor.vue
<template>
<div id="ancestor">
<Parent :keys="keys" num="3000" />
</div>
</template>
<script>
import Parent from '../../components/parent'
export default {
name: 'ancestor',
components: {
Parent
},
data() {
return {
keys: 1998
}
}
}
</script>
parent.vue
<template>
<div id="parent">
<div class="head_box">
<Son v-bind="$attrs" />
</div>
</div>
</template>
<script>
import Son from '../son'
export default {
name: 'parent',
components: {
Son
},
data() {
return {}
}
}
</script>
son.vue
<template>
<div id="son">
<div class="title_box">
<p>爷爷的值:{{ $attrs.keys }}</p>
<p>爷爷的值:{{ $attrs.num }}</p>
</div>
</div>
</template>
<script>
export default {
name: 'son',
data() {
return {}
}
}
</script>
ancestor.vue
<template>
<div id="ancestor">
<Parent :keys="keys" @handleChildAdd="handleAdd" />
</div>
</template>
<script>
import Parent from '../../components/parent'
export default {
name: 'ancestor',
components: {
Parent
},
data() {
return {
keys: 1998
}
},
methods: {
// 父组件的事件
handleAdd() {
this.keys++
}
}
}
</script>
parent.vue
<template>
<div id="parent">
<div class="head_box">
<Son v-bind="$attrs" v-on="$listeners" />
</div>
</div>
</template>
<script>
import Son from '../son'
export default {
name: 'parent',
components: {
Son
},
data() {
return {}
}
}
</script>
son.vue
<template>
<div id="son">
<div class="title_box">
<p>爷爷的值:{{ $attrs.keys }}</p>
<span @click="chlidEvent">点击触发爷爷的事件</span>
</div>
</div>
</template>
<script>
export default {
name: 'son',
data() {
return {}
},
methods: {
chlidEvent() {
// 通过$emit调用爷爷的方法
this.$emit('handleChildAdd')
}
}
}
</script>
import Vue from 'vue';
export default new Vue;
<template>
<div class="hello">
<h1 @click="add">{{ title }}</h1>
</div>
</template>
<script>
import bus from "../publicFn/bus.js";
export default {
name: "HelloWorld",
props: ["title"],
data() {
return {
age:18
};
},
methods: {
add(){
bus.$emit("childEvent", this.age);
}
},
};
</script>
<template>
<div id='swiper'>
<button>我是按钮</button>
</div>
</template>
<script>
import bus from "../publicFn/bus.js";
export default {
name:'Swiper',
data (){
return {
}
},
mounted(){
bus.$on("childEvent", (e) => {
console.log(e)
})
}
}
</script>
移步:vue-router总结
移步:vuex总结
作用域插槽在slot
上绑定属性来将子组件的信息传给父组件使用,这些属性会被挂在父组件slot-scope接受的对象上。绑定时用的key,就是父组件获取数据的键。
<template>
<div>
<aaaChildren>
<template #default="scope">
<h1>{{ scope.info.age }}</h1>
</template>
<template #text="scope">
<h2>{{ scope.data }}</h2>
</template>
</aaaChildren>
</div>
</template>
<script>
import aaaChildren from './children/index.vue'
export default {
name:'aaa',
components:{
aaaChildren
}
}
</script>
<template>
<div class="aaa_children">
<slot :info="user"></slot>
<slot name="text" :data="name"></slot>
</div>
</template>
<script>
export default {
name:'aaaChildren',
props:[],
components:{},
data(){
return {
user: {
age: 18,
name: '小明'
},
name: '卡卡罗特'
}
}
}
</script>
如果看了觉得有帮助的,我是@鹏多多,欢迎 点赞 关注 评论
往期文章
个人主页