Files
certd/packages/ui/certd-client/src/views/crud/editable/row/mock.ts
T
GitHub Actions Bot 2ea0c48853 🔱: [client] sync upgrade with 8 commits [trident-sync]
build: publish success
chore:
chore:
chore:
chore:
build: publish success
chore:
2023-11-20 19:24:12 +00:00

25 lines
336 B
TypeScript

import mockUtil from "/src/mock/base";
const options: any = {
name: "EditableRow",
idGenerator: 0
};
const list = [
{
radio: "1",
children: [
{
radio: "2"
}
]
},
{
radio: "2"
},
{
radio: "0"
}
];
options.list = list;
const mock = mockUtil.buildMock(options);
export default mock;