分隔符 separator
说明
分隔符用于模块内分隔元素。
示例
{
"id": "separator",
"name": "图片列表",
"type": "separator",
"description": "图标列表说明如下"
}
默认属性
属性 | 说明 | 类型 | 默认值 |
---|---|---|---|
description | 描述 | String | '' |
name | 名称 | String | '' |
type | 类型 | String | 'separator' |
/**
* 默认配置 - 分隔符
*/
module.exports = {
/**
* 描述
* @type {String}
*/
description: '',
/**
* 名称
* @type {String}
*/
name: '',
/**
* 类型
* @type {String}
* @required
*/
type: 'separator'
};