We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
小程序(@nutui/nutui-taro)
4.0.4
3.2.47
dev:weapp
npm
16
Chrome
MacOS
Taro 3.6.2
nutui.jd.com/taro/vue/4x/
<template> <div class="demo"> <nut-date-picker v-model="currentDate" :min-date="minDate" :max-date="maxDate" :is-show-chinese="true" @confirm="confirm" @change="change" ></nut-date-picker> </div> </template> <script setup> import { ref } from 'vue' const minDate = new Date() const maxDate = new Date(2025, 10, 1) const currentDate = new Date() const confirm = ({ selectedValue, selectedOptions }) => { desc.value = selectedOptions.map((option) => option.text).join('') } const change = (val) => { console.log('change', val) } </script>
正常切换
在切换月份的时候,可能会导致日的错误更新。
The text was updated successfully, but these errors were encountered:
为何最新版4.1.2都没解决这个问题?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
NutUI scenes(nutui 场景)
小程序(@nutui/nutui-taro)
NutUI-vue version(nutui-vue 版本)
4.0.4
Vue version(vue 版本)
3.2.47
Operating environment(运行环境)
dev:weapp
Citation method(引用方式)
npm
Node version(node 版本)
16
Browser and its version(浏览器及其版本)
Chrome
System and its version(系统及其版本)
MacOS
Taro environmental information(taro 环境信息)
Taro 3.6.2
Reproduction link(重现链接)
nutui.jd.com/taro/vue/4x/
Steps to reproduce(重现步骤)
What is expected?(期望的结果是什么?)
正常切换
What is actually happening?(实际的结果是什么?)
在切换月份的时候,可能会导致日的错误更新。
The text was updated successfully, but these errors were encountered: