频道列表模块 (二) 03-点击进入频道-sync修饰符 语法糖 ——子父组件同步数据,补充v-model使用

点击进入频道-sync修饰符 语法糖 ——子父组件同步数据,补充v-model使用

src/views/home/components/channel-edit.vue中:

<span class="f12" @click="enterChannel(i)" 
    // 进入频道 index 是你需要进入频道索引
    enterChannel (index) {
      // 关闭  编辑频道组件
      this.$emit('input', false)
      // 通知  父组件  修改activeIndex的值 为当前传入index
      this.$emit('update:activeIndex', index)
    },
 //  修改组件索引代码 
<edit-channel
      v-model="showEditChannel"
      :channels="channels"
      @update="activeIndex=$event"
      :activeIndex="activeIndex">
    </edit-channel>

可以简写:sync修饰符 语法糖 ——子父组件同步数据,补充v-model使用

    enterChannel (index) {
      this.$emit('input', false)
-     this.$emit('update', index)
+     this.$emit('update:activeIndex', index)
    },
    //以下等效  
    //频道编辑
   <edit-channel
      v-model="showEditChannel"
      :channels="channels"
-      @update="activeIndex=$event"
-      :activeIndex="activeIndex">
+      :activeIndex.sync="activeIndex">
    </edit-channel>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值