1234567891011121314151617181920212223242526272829303132 |
- const type = 'GcBorder1'
- const name = '边框一'
- // 右侧配置项
- const setting = [
- // 背景色
- {
- label:'背景色',
- // 设置组件类型, select / input / colorPicker
- type: 'colorPicker',
- // 字段
- field: 'backgroundColor',
- optionField: 'backgroundColor', // 对应options中的字段
- // 是否多选
- multiple: false,
- // 绑定的值
- value: '',
- },
- ]
- export default {
- setting,
- type,
- name
- }
|