提交 | 用户 | 时间 | ||
820397 | 1 | import { DiyComponent } from '@/components/DiyEditor/util' |
H | 2 | |
3 | /** 页面设置属性 */ | |
4 | export interface PageConfigProperty { | |
5 | // 页面描述 | |
6 | description: string | |
7 | // 页面背景颜色 | |
8 | backgroundColor: string | |
9 | // 页面背景图片 | |
10 | backgroundImage: string | |
11 | } | |
12 | ||
13 | // 定义页面组件 | |
14 | export const component = { | |
15 | id: 'PageConfig', | |
16 | name: '页面设置', | |
17 | icon: 'ep:document', | |
18 | property: { | |
19 | description: '', | |
20 | backgroundColor: '#f5f5f5', | |
21 | backgroundImage: '' | |
22 | } | |
23 | } as DiyComponent<PageConfigProperty> |