mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 22:36:32 +00:00
d5d0e1036b
* docs: add docs * ignore dumi theme test * fix: error TS2717: Subsequent property declarations must have the same type. * update docs * deploy gh-pages * plugins docs * hash & cname * exportStatic * ssr * vercel * vercel * fix: deploy vercel * Delete vercel.json * docs * fix APP_DIST * on master branch
25 lines
295 B
Markdown
25 lines
295 B
Markdown
---
|
|
title: Collections - 数据集
|
|
---
|
|
|
|
# Collections - 数据集
|
|
|
|
与 database.table 用法一致
|
|
|
|
```ts
|
|
export default {
|
|
name: 'examples',
|
|
fields: [],
|
|
}
|
|
```
|
|
|
|
配置扩展
|
|
|
|
```ts
|
|
import { extend } from '@nocobase/database';
|
|
|
|
export default extend({
|
|
name: 'examples',
|
|
fields: [],
|
|
});
|
|
``` |