vue实现组件之间传值功能示例

这篇文章主要介绍了vue实现组件之间传值功能,结合实例形式分析了vue.js父子组件之间相互传值常见操作技巧,需要的朋友可以参考下

本文实例讲述了vue实现组件之间传值功能。分享给大家供大家参考,具体如下:

slot标签:

想向封装好结构的组件中插入内容,需要借助<slot></slot>

在组件之中进行关联:如

模板中:

<slot></slot>

组件调用中:

<p slot='txt'></p>

注:如果只有slot上面每一定义name属性,则只能有一个slot

<div> <com> <p slot='txt'></p> </com> </div> <template> <div> <slot></slot> </div> </template>

Vue.component('com',{ template:"#c" })

父组件向子组件传值:props

父组件:

<template> <child :parent-msg='a'></child> </template>

子组件:

child:{ template:'#chi' props:['parentMsg'] }

子组件向父组件的传值:

vue只运行数据的单选传递,在子组件向父组件的传值中,需要事件触发

子组件:

<template> <div @click="up"></div> </template>

methods:{ up(){ this.$emit('fn','msg') // 主动触发fn方法,msg是需要传递的数据 } }

父组件:

<div> <child @fn="getval"></child> </div>

methods:{ getval(msg){ // msg接收到的数据 this.msg=msg } }

希望本文所述对大家vue.js程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/1c6aed4f5e2d647e34accf4d046d7320.html