码迷,mamicode.com
首页 > 其他好文 > 详细

vue传值返回

时间:2021-05-24 07:38:27      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:str   fun   函数   lse   oba   flag   type   UNC   ops   

第一种办法

父: 

默认 this.addFlag = true

handleAdd() {
 this.addFlag = false
}
//通过子元素给父传递
showHandle(data) {
  this.addFlag = data
}
 <vital-add  @changeHandle = "showHandle"></vital-add>  
 
子:
传递给父元素函数
Handleback() {
      this.$emit(‘changeHandle‘, ‘true‘)
}
 
 
 
第二种办法:
父:
handleAdd() {
 this.addFlag = false
}
goback() {
   this.addFlag = true
}
<braden-stress  :goback="goback"></braden-stress>
 
子:
props: {
    goback: {
      type: Function
    }
  },
返回:
back() {
      this.goback()
 },

vue传值返回

标签:str   fun   函数   lse   oba   flag   type   UNC   ops   

原文地址:https://www.cnblogs.com/yoututu/p/14763862.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!