vue-antd-admin icon indicating copy to clipboard operation
vue-antd-admin copied to clipboard

🐜 Ant Design Pro's implementation with Vue

Results 123 vue-antd-admin issues
Sort by recently updated
recently updated
newest added

报错内容:Syntax Error: TypeError: Cannot set properties of undefined (setting 'parent') 报错组件:./src/components/form/FormRow.vue 解决:注释掉 :global, 请问出现这个问题的原因是什么?

` theme: { //主题 color: '#1890ff', //主题色 **mode: 'night',** //主题模式 可选 dark、 light 和 night success: '#52c41a', //成功色 warning: '#faad14', //警告色 error: '#f5222f', //错误色 },` 两个文件都改了 mode: 'night‘ ; 重启项目刷新都无效...

![image](https://user-images.githubusercontent.com/37794954/179132569-22f50dc1-bee7-4394-b1e9-10c33cbca81d.png) TypeError: Cannot set property 'parent' of undefined

点击登录,登录接口报错,报错信息如截图: ![image](https://user-images.githubusercontent.com/23649507/181447247-6ef81f73-9373-4631-9473-74243164ab83.png)

多标签模式下,点击保存怎么关闭当前的标签呢? 在就是,table表格,我们点击修改的时候,怎么设置弹出的标签是独立的。互相不影响。

Bumps [terser](https://github.com/terser/terser) from 4.7.0 to 4.8.1. Changelog Sourced from terser's changelog. v4.8.1 (backport) Security fix for RegExps that should not be evaluated (regexp DDOS) v4.8.0 Support for numeric separators (million...

dependencies

多标签模式下已点过的菜单,再次点击不会重新加载,每次点击菜单还要刷新才行,这样体验非常不好,而且用户是不知道的也不会这样操作的 不知有没有办法解决这个问题? 前端制作此框架时就没有遇到过这样问题吗?

Bumps [moment](https://github.com/moment/moment) from 2.26.0 to 2.29.4. Changelog Sourced from moment's changelog. 2.29.4 Release Jul 6, 2022 #6015 [bugfix] Fix ReDoS in preprocessRFC2822 regex 2.29.3 Full changelog Release Apr 17, 2022...

dependencies

Bumps [shell-quote](https://github.com/substack/node-shell-quote) from 1.7.2 to 1.7.3. Changelog Sourced from shell-quote's changelog. 1.7.3 Fix a security issue where the regex for windows drive letters allowed some shell meta-characters to escape the...

dependencies

在路由配置角色验证 ``` { path: 'demo', name: '演示页', meta: { icon: 'file-ppt', authority: { role: 'test', } }, component: () => import('@/pages/demo') } ``` 加载菜单仍然会显示,经过筛查,发现 hasPermission方法权限验证通过了,由于 route.meta.pAuthorities 给了 * 的权限,现在想用角色来实现菜单权限控制有什么好的解决办法? 我目前想到的解决办法是在...