«

Ant Design Vue 3日期组件报错 TypeError: clone.weekday is not a function

Aman 发布于 阅读:2881 备忘笔记


Ant Design Vue 3日期组件在初始化赋值时 报错:TypeError: clone.weekday is not a function
解决方法

import dayjs from "dayjs";
import weekday from "dayjs/plugin/weekday"
import localeData from "dayjs/plugin/localeData"

dayjs.extend(weekday)
dayjs.extend(localeData)

vue ant design