Ant Design Vue 3日期组件报错 TypeError: clone.weekday is not a function 备忘笔记
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/p...
Ant Design Vue 3动态引用图标 备忘笔记
在新项目上首次使用了Ant Design Vue 3.2.3
在做动态导航的时候遇到了一个很棘手的问题:无法动态引用图标。
官方给的例子是按需引入的。
<template>
<home-outlined />
<setting-filled />
<smile-outlined />
...
