25 lines
517 B
TypeScript
25 lines
517 B
TypeScript
import asyncLoader from '@/utils/asyncLoader'
|
|
import type { Widget } from '..'
|
|
|
|
export default {
|
|
name: 'work',
|
|
label: '番茄工作法',
|
|
description: '番茄记事法',
|
|
icon: '/tab/icons/work/tomato_work_icon.png',
|
|
modal: asyncLoader(() => import('./Modal')),
|
|
list: [
|
|
{
|
|
w: 2,
|
|
h: 1,
|
|
label: '小',
|
|
component: asyncLoader(() => import('./Small'))
|
|
},
|
|
{
|
|
w: 4,
|
|
h: 2,
|
|
label: '大',
|
|
component: asyncLoader(() => import('./Large'))
|
|
}
|
|
]
|
|
} as Widget
|