UNPKG

vue3-barrage

Version:

基于vue3.x开发的弹幕组件

7 lines (6 loc) 171 B
/* 弹幕类型 */ export type PositionStatus = 'normal' | 'top' | 'bottom'; export interface BarrageList { msg: string | undefined; position: PositionStatus; }