【vue】点击获取循环列表的某一项内容

需求:

使用v-for循环遍历列表时候,点击列表项item, 可以获取item的相关信息。

效果👇:

利用@click="getData(item.id,item.title)" 方法传送

 代码🌰

<template>
  <div>
    <ul>
      <li
        class="item"
        v-for="item in arrData"
        :key="item.id"
        @click="getData(item.id,item.title)">
        {{ item.title }}id={{item.id}}
      </li>
    </ul>
  </div>
</template>

<script>
export default {
  data () {
    return {
      arrData: [
        { id: 1, title: '爱我中华' },
        { id: 2, title: '祖国需要我的努力' },
        { id: 3, title: '义勇军进行曲' },
        { id: 4, title: '起来起来起来' },
      ]
    }
  },
  methods: {
    getData (id, title) {
      this.$message({
        message: `当前被点击的id= ${id}标题为:${title}`,
        type: 'success'
      })
    }
  }
}
</script>

<style scoped>
.item {
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  background: #e2e2e2;
  color: red;
}
.item:hover {
  background: #e2e234;
}
</style>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值