ismail9k / vue3-carousel

Vue 3 carousel component
https://ismail9k.github.io/vue3-carousel/
MIT License
660 stars 164 forks source link

Select inside slides does not respond to click #292

Closed amymaraisane closed 1 year ago

amymaraisane commented 1 year ago

When using a select tag inside a slide, the options cannot be selected. When I click inside the select, I expect to see the list of options appear, but nothing appears and there are no options shown.

<template>
  <carousel>
    <slide>
      <select>
        <option>A</option>
        <option>B</option>
      </select>
    </slide>
  </carousel>
</template>

This is similar to Issue #220