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