Files
certd/packages/ui/certd-client/src/views/crud/component/json/mock.ts
T
GitHub Actions Bot 6ec697b010 🔱: [client] sync upgrade with 12 commits [trident-sync]
refactor: 1.11.0
refactor: 1.11.0
refactor: 1.11.0
refactor: 1.11.0
refactor: ts化
refactor: ts化
feat: 全面TS化
perf: 全面ts化
refactor: 继续优化ts
perf: ts定义优化
fix: 修复wangeditor无法上传视频的bug
2023-03-16 19:24:01 +00:00

19 lines
317 B
TypeScript

import mockUtil from "/src/mock/base";
const options: any = {
name: "ComponentJson",
idGenerator: 0
};
const list: any = [
{
json: '{"a":1,"b":2}',
async: null
},
{
json: '{"a":3,"b":4}',
async: null
}
];
options.list = list;
const mock = mockUtil.buildMock(options);
export default mock;