吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 952|回复: 14
收起左侧

[求助] vue项目中,使用vant插件中的标签页,为什么没办法添加事件。在线求助!!!

[复制链接]
林夕★ 发表于 2021-10-19 20:25
[HTML] 纯文本查看 复制代码
<template>
  <div class="">
    <van-tabs >
      <van-tab v-for="(item, index) in name" :key="index" :title="item.title" @click=‘add’>
        <van-card
          v-for="(item, index) in list"
          :key="index"
          :price="item.price"
          :desc="item.desc"
          :title="item.title"
          :thumb="item.pic"
          :origin-price="item.old_price"
        />
      </van-tab>
    </van-tabs>
  </div>
</template>

<script>
export default {
  data() {
    return {
      name: [],
      list: [],
    };
  },
  created() {
    this.$axios
      .get("fenlei.json", {
        params: {},
      })
      .then((res) => {
        this.name = res.data.result;
        console.log(this.name);
      });
    this.$axios.get("list.json").then((res) => {
      this.list = res.data.result;
    });
  },
  methods: {
add() {
      console.log(111);
    },
  },
  components: {},
};
</script>

<style lang='scss'>
</style>

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

d199212 发表于 2021-10-20 08:13
click事件是在tabs上面,不是tab
goldli 发表于 2021-10-20 08:52
花不开但要富贵 发表于 2021-10-20 08:58
我今天是大佬 发表于 2021-10-20 09:00
研究 click事件  放在哪个元素上
fan1191237272 发表于 2021-10-20 09:05
事件是放在van-tabs上,而且你的@click="add"的单引号不对劲,没发现吗?
肥猫警长 发表于 2021-10-20 09:12
马马虎虎的
qa2080639 发表于 2021-10-20 10:34
@click 改成 @click.native   单引号改成双引号
lucklys 发表于 2021-10-20 10:35
van-tab  这是一个组件 你懂不懂组件。。。。
Mr.[先知] 发表于 2021-10-20 10:46
时间是在tabs上面,另外你的add的引号不对
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 20:25

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表