Nemo Shen

Results 21 comments of Nemo Shen

Hi @ritwickdey, I have a problem. my project dir like: -a |-scss |--user |---index.scss |---setting.scss |---order.scss |--admin |---index.scss |---system.scss I want generate a css dir like: -a |-css |--user |---index.css...

@1207934561 @lshunran 能说下是切换哪个组件,然后回到popup组件,动画效果失效的吗?

@1207934561 感谢提供复现视频~ 我这边尝试复现&排查原因 @zhazhanitian You can also commit PR if you want to fixed it. It maybe caused by transition animation.

🌚emmm可能是setTimeout导致的性能问题

[always-embed](https://developers.weixin.qq.com/miniprogram/dev/component/input.html)

iphone 13 mini ios 15.3.1 钉钉 6.4.40 未复现你描述的问题,是什么手机型号

@duanwenxiang 我不知道你的业务场景是什么,提供给你两种解决方案 ## 1. 小数点需要跟着数字一起滚动 > 假设你滚动出来的是折扣金额,最低00.01最高99999(中间逗号处取值 /\\.|[1-9]/) 可以使用 prop `textList` 自定义 提供你参考代码:https://codesandbox.io/p/sandbox/vant-4-issue-template-forked-8y9l3w?file=%2Fsrc%2FApp.vue ## 2. 小数点不需要一起滚动 > 假设你的滚动出来的是折扣金额,最低00.01最高99.99(中间 '.' 始终存在) 可以使用多个 `` 提供你参考代码:https://codesandbox.io/p/sandbox/vant-4-issue-template-forked-y6s8hx?file=%2Fsrc%2FApp.vue%3A7%2C1-8%2C1 --- `discuss` 看起来需要提供 `` 或者开放slot: ``,仅提供 `target-num`...

@vuehtml emmm, 事实上 `` 目前就已经支持插槽了,你可以看文档的 [DropdownItem Slots](https://vant-ui.github.io/vant/#/zh-CN/dropdown-menu#dropdownitem-slots) 部分, 对应的 demo 是 `自定义菜单内容` 你提供的代码我给你改写下 ```ts import { ref } from 'vue'; import { DropdownMenu, DropdownItem } from 'vant'; const item =...