xyyd-fatfox/src/widgets/index.ts

22 lines
606 B
TypeScript
Raw Normal View History

2024-09-29 15:18:00 +08:00
import type { Component } from 'vue'
2024-09-26 11:47:16 +08:00
import calendar from './calendar'
2024-09-29 15:17:52 +08:00
import weather from './weather'
import weApply from './weApply'
2024-10-17 16:21:25 +08:00
import gameNews from './gameNews'
import eat from './eat'
2024-09-26 11:47:16 +08:00
export interface Widget {
name: string // 小组件类型唯一标识
label: string // 小组件名称
description: string // 小组件描述
icon: string // 小组件图标
modal: Component | null // 弹框组件
2024-09-26 11:47:16 +08:00
list: {
w: number
h: number
label: string
2024-09-29 15:18:00 +08:00
component: Component
2024-09-26 11:47:16 +08:00
}[] // 不同尺寸小组件块
}
export default [calendar, weather, weApply, gameNews, eat] as Widget[]