UNPKG
vue3-barrage
Version:
latest (0.3.2)
0.3.2
0.3.1
0.3.0
0.2.1
0.1.0
基于vue3.x开发的弹幕组件
github.com/jsicu/vue3-barrage
jsicu/vue3-barrage
vue3-barrage
/
packages
/
utils
/
lib.ts
7 lines
(6 loc)
•
171 B
text/typescript
View Raw
1
2
3
4
5
6
7
/* 弹幕类型 */
export
type
PositionStatus
=
'normal'
|
'top'
|
'bottom'
;
export
interface
BarrageList
{
msg
:
string
|
undefined
;
position
:
PositionStatus
; }