| 1234567891011121314151617181920212223 |
- 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>
|