pany
pany
地址:https://github.com/un-pany/v3-admin ## ⚡️ 简介 一个中后台管理系统基础解决方案,基于 Vue3、TypeScript、Element-Plus 和 Vue-Cli - 桌面端: [v3-admin-electron](https://github.com/un-pany/v3-admin-electron) ## 📚 文档 [简体中文](https://juejin.cn/post/6963876125428678693) | [English Docs](./README.en.md) ## 预览 | 位置 | 账号 | 链接 | | --- |...
如果你想使用这位大佬的 minimal 分支,可以使用这份优化后的版本:https://github.com/un-pany/v3-admin 再次感谢这位大佬提供的 vue3 minimal 分支,我们团队基于此分支,进行全面的改造更新,最终才产生了v3-admin
**环境信息:** - 浏览器: chrome - we-vue 版本: v2.3.3 - 包管理工具: npm - Node.js 版本:12.13 **Bug 描述** popup组件的@open和@close两个自定义事件不起作用
🚀 [GitHub](https://github.com/un-pany/v3-admin-vite) 🚀 [Gitee](https://gitee.com/un-pany/v3-admin-vite) ## ⚡ Introduction v3-admin-vite is a free and open source middle and background management system basic solution, based on mainstream framework such as Vue3, TypeScript, Element-Plus,...
🚀 [GitHub](https://github.com/un-pany/v3-admin-vite) 🚀 [Gitee](https://gitee.com/un-pany/v3-admin-vite) ## ⚡ Introduction v3-admin-vite is a free and open source middle and background management system basic solution, based on mainstream framework such as Vue3, TypeScript, Element-Plus,...
wip...
在 v4.9.2 中发布了该属性: https://github.com/youzan/vant/releases/tag/v4.9.2
在 `switch-mode` 为 `none` 时不存在该问题。 当为 `month` 或 `year-month` 时,如果用户选择的「开始日期」和「结束日期」中间包含了「禁用日期」,那么该范围依旧能被选中,预期是无论如何都不能选中「禁用日期」 该 PR 保证了 `none`、`month`、`year-month` 三个模式下 UI 行为是一致的。
当 defaultDate 为 undefined 时,现有的 watch 会将其重置为 null,逻辑如下: ```js watch( () => props.defaultDate, (value = null) => { currentDate.value = value; scrollToCurrentDate(); }, ); ``` 而在该日历组件中,undefined 表示「今天」,null 表示 「不选择」。如果业务层将 defaultDate...