美文网首页
将Antd 的日期选择框改为中文

将Antd 的日期选择框改为中文

作者: ljwheyxy | 来源:发表于2019-11-20 17:17 被阅读0次
    // 以下4行引入解决日期控件英文的问题
    import moment from 'moment'
    import locale from 'antd/lib/date-picker/locale/zh_CN'
    import 'moment/locale/zh-cn'
    moment.locale('zh-cn')
    
    <RangePicker
                      style={{ width: '306px' }}
                      locale={locale}
                      onChange={this.handleChange.bind(this, 'createTime')}
                    />
    

    相关文章

      网友评论

          本文标题:将Antd 的日期选择框改为中文

          本文链接:https://www.haomeiwen.com/subject/fftaictx.html