gpt4 book ai didi

material-ui - material-ui 有日期选择器吗?

转载 作者:行者123 更新时间:2023-12-05 06:36:11 27 4
gpt4 key购买 nike

我安装了 material-ui“^1.0.0-beta.36”。文档说有日期选择器。

但我在 node_modules\material-ui 和任何子文件夹中都找不到它。

更改日志表明计划在未来版本中支持日期选择器:

1.0.0-beta.17 - Oct 16, 2017

As this garbage collection stabilize, we will be able to add new features, like a stepper, extension panel or date/time pickers. But we are not here yet.

最佳答案

Material-ui v1 目前提供了几个日期选择器。但是,没有特定的 DatePicker 组件。

相反,您使用 TextField 组件的 type 属性来指定您需要日期选择器而不是典型的文本输入。这是一个将为您提供经典日期选择器的示例:

import TextField from 'material-ui/TextField';

<TextField
type="date"
defaultValue="2017-05-24"
/>

除了日期之外,还有其他选择器。例如:

  • 时间选择器:type="time"
  • 日期和时间选择器:type="datetime-local"

您可以在 pickers page of the docs 上找到更多相关信息.

关于material-ui - material-ui 有日期选择器吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49237334/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com