19 lines
356 B
TypeScript
19 lines
356 B
TypeScript
|
import asyncLoader from '@/utils/asyncLoader'
|
||
|
import type { Widget } from '..'
|
||
|
|
||
|
export default {
|
||
|
name: 'gameVideo',
|
||
|
label: 'gameVideo',
|
||
|
description: 'gameVideoDesc',
|
||
|
icon: '/icons/game_video.png',
|
||
|
modal: null,
|
||
|
list: [
|
||
|
{
|
||
|
w: 4,
|
||
|
h: 2,
|
||
|
label: '大',
|
||
|
component: asyncLoader(() => import('./Large'))
|
||
|
}
|
||
|
]
|
||
|
} as Widget
|