1.0发布,Fixes Bug,以及新增 ProTable组件

This commit is contained in:
Ah jung
2021-07-12 16:36:07 +08:00
parent 1e9b7074e5
commit b1c730dde8
3 changed files with 8 additions and 2 deletions

View File

@@ -6,7 +6,8 @@
- 1.0骨架发布 - 1.0骨架发布
- Naive UI 升级至2.15.4 - Naive UI 升级至2.15.4
- 菜单新增排序字段 - 菜单新增排序字段
- 新增 `ProTable` 组件,封装了常用的分页列配置等逻辑,可查看组件示例页面 - 新增 `ProTable` 组件,封装了常用的分页列配置等逻辑
- 新增 `ProTable` 组件示例页面
- 持续更新中... - 持续更新中...

View File

@@ -16,6 +16,11 @@ Naive Ui Admin 是一个免费开源的中后台模版,使用了最新的`vue3
- [ ] 监控页 - [ ] 监控页
- [x] 工作台 - [x] 工作台
### 页面组件
#### ProTable
- [x] 表格
- 持续开发中...
## 在线预览 ## 在线预览
- [naive-ui-admin](https://jekip.github.io) - [naive-ui-admin](https://jekip.github.io)

View File

@@ -31,7 +31,7 @@ export const basicProps = {
required: true required: true
}, },
rowKey: { rowKey: {
type: [String, Function] as PropType<string | ((record: Recordable) => string)>, type: [String, Function] as PropType<string | ((record) => string)>,
default: undefined, default: undefined,
}, },
pagination: { pagination: {