antd使用RangePicker默认值报错

最近使用 ant-dDatePicker.RangePicker 时,在给其赋予一个默认的值或者初始值时,出现了一个严重的错误导致崩溃,如下所示

实际上是缺少一些默认的文件导入,我们一般导入的文件是 dayjs,实际上还应该导入下面更多文件才能正常使用该功能

js 复制代码
import dayjs from "dayjs"
import advancedFormat from 'dayjs/plugin/advancedFormat'
import customParseFormat from 'dayjs/plugin/customParseFormat'
import localeData from 'dayjs/plugin/localeData'
import weekday from 'dayjs/plugin/weekday'
import weekOfYear from 'dayjs/plugin/weekOfYear'
import weekYear from 'dayjs/plugin/weekYear'
dayjs.extend(customParseFormat)
dayjs.extend(advancedFormat)
dayjs.extend(weekday)
dayjs.extend(localeData)
dayjs.extend(weekOfYear)
dayjs.extend(weekYear)
相关推荐
袋鼠云数栈UED团队2 个月前
浅谈数栈产品里的 Descriptions 组件
前端·react.js·ant design
自白2 个月前
关于我是如何二次开发了 antd-vue 的a-range-picker组件,同时还添加了 vscod智能提示这件事
vue.js·visual studio code·ant design
袋鼠云数栈UED团队3 个月前
在 React 项目中 Editable Table 的实现
前端·react.js·ant design
孟宪磊mxl3 个月前
Element Plus& Ant Design(react) 表格的分页封装
vue.js·react.js·ant design·editplus
程序员也要学好英语3 个月前
搭建 react + antd 技术栈的测试框架
react.js·jest·ant design
Point4 个月前
[源码分析] Antd-RC-Notification
前端·源码阅读·ant design
Wxh161445 个月前
Ant Design 自定义组件空状态速记
前端·javascript·ant design
不喝酒不会写代码5 个月前
react使用antd-useWatch的坑(react太难了)
react.js·ant design
花笙_6 个月前
antd form表单赋值Switch不生效
前端·ant design