varletjs / varlet

A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.
https://varlet.pages.dev
MIT License
4.81k stars 602 forks source link

time-picker PC下无法使用 #1600

Closed zmqcherish closed 2 months ago

zmqcherish commented 2 months ago

Bug report 🐞

版本: @varlet/ui": "^3.2.5", "vue": "^3.4.21"

time-picker组件在浏览器PC上可正常展示,但无法选择时间。 浏览器切换手机模式就正常。不知道这是feature还是bug😀 ps: 有需要的话提供demo

`

`
zmqcherish commented 2 months ago

更新:无法用鼠标选择时间,可以触屏操作

Bug report 🐞

版本: @varlet/ui": "^3.2.5", "vue": "^3.4.21"

time-picker组件在浏览器PC上可正常展示,但无法选择时间。 浏览器切换手机模式就正常。不知道这是feature还是bug😀 ps: 有需要的话提供demo

<script setup> import { ref } from 'vue' const date = ref('11:20') </script> <template> <var-time-picker v-model="date" /> </template>