美文网首页
父传子,子传父

父传子,子传父

作者: 奇妙雨 | 来源:发表于2018-05-18 17:59 被阅读0次
     父组件

<template>1
<div id="app">
父组件--{{msg}}

<o-a :name="msg"></o-a>
</div>
</template>

<script>
import oA from '@/test/A'
export default{
data(){
return{
msg:'TaylorSwift',
}
},
components:{
oA
}
}

</script>

<style scoped="scoped">
*{font-size: .5rem;}
</style>

子组件
<template>
<div id="app">
子组件--{{name}}
</div>
</template>

<script>
export default{
// 接收值
props:{
name:{
type:String,
default:0
}
},
data(){
return{

  }
}

}
</script>

<style>
</style>
子传父
<template>
<div id="app">
父组件--{{msg}}

<o-a v-on:child="showchild"></o-a>
</div>
</template>

<script>
import oA from '@/test/A'
export default{
data(){
return{
msg:'',
}
},
components:{
oA
},
methods:{
// 定义的事件名放在methods
showchild(res){
this.msg = res
}
}
}

</script>

<style scoped="scoped">
*{font-size: .5rem;}
</style>

子组件
<template>
<div id="app">
子组件--{{name}}
<button @click="son">子组件</button>
</div>
</template>

<script>
export default{
data(){
return{
name:'TaylorSwift'
}
},
methods:{
son(){
// 派发事件,参数
this.$emit("child",this.name)
}
}
}
</script>

<style>
</style>

相关文章

网友评论

      本文标题:父传子,子传父

      本文链接:https://www.haomeiwen.com/subject/nyxndftx.html