cp icon indicating copy to clipboard operation
cp copied to clipboard

Add groups for items

Open BingBlog opened this issue 6 years ago • 0 comments

1、Some form may be need to separate to several groups, and has its own tips、group name; 2、In some situations, we want to put some item together inline;

solution:

// config structure with groups
[
    formItem,
    group,
    formItem,
    group
]
// config for group
{
    group: true, // use to identify it is a group
    label: 'group name', // default ''
    inline: true,  // default false
    groupItems: [
        groupItem,
        groupItem
   ]  
}

BingBlog avatar Jun 12 '19 05:06 BingBlog