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'
|
2024-10-16 17:08:40 +08:00
|
|
|
import weApply from './weApply'
|
2024-10-17 16:21:25 +08:00
|
|
|
import gameNews from './gameNews'
|
2024-10-17 18:33:05 +08:00
|
|
|
import eat from './eat'
|
2024-10-18 18:17:45 +08:00
|
|
|
import discount from './discount'
|
|
|
|
import hotspot from './hotspot'
|
|
|
|
import constellation from './constellation'
|
2024-09-26 11:47:16 +08:00
|
|
|
export interface Widget {
|
|
|
|
name: string // 小组件类型唯一标识
|
|
|
|
label: string // 小组件名称
|
|
|
|
description: string // 小组件描述
|
|
|
|
icon: string // 小组件图标
|
2024-10-16 17:08:40 +08:00
|
|
|
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
|
|
|
}[] // 不同尺寸小组件块
|
|
|
|
}
|
|
|
|
|
2024-10-18 18:17:45 +08:00
|
|
|
export default [calendar, weather, weApply, gameNews, eat, discount, hotspot, constellation] as Widget[]
|