mirror of
https://github.com/certd/certd.git
synced 2026-05-18 22:57:31 +08:00
20 lines
273 B
JavaScript
20 lines
273 B
JavaScript
|
|
import mockUtil from "/src/mock/base";
|
||
|
|
const options = {
|
||
|
|
name: "SlotsLayout",
|
||
|
|
idGenerator: 0
|
||
|
|
};
|
||
|
|
const list = [
|
||
|
|
{
|
||
|
|
radio: "1"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
radio: "2"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
radio: "0"
|
||
|
|
}
|
||
|
|
];
|
||
|
|
options.list = list;
|
||
|
|
const mock = mockUtil.buildMock(options);
|
||
|
|
export default mock;
|