dataV轮播表单击事件执行两次

  • Post author:
  • Post category:其他


原因可能是事件冒泡

<dv-scroll-board
          :config="findCityData"
          class="leftAllDate"
          style="width: 85%; height: 50%; margin: 15px auto"
          @click="clickfindCityData"
        />
clickfindCityData(config) {
      event.stopPropagation();//加上这个
      console.log("config", config.ceil);
    },



版权声明:本文为weixin_45599105原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。