UNPKG
vue3-danmaku
Version:
latest (1.6.7)
1.6.7
1.6.6
1.6.5
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.5.3
1.5.2
1.5.2-beta.0
1.5.1
1.5.0
1.4.0
1.4.0-beta.1
1.3.0
1.2.1-beta.1
1.2.0
1.2.0-beta.4
1.2.0-beta.3
1.2.0-beta.2
1.2.0-beta.1
1.1.0
1.1.0-beta.1
1.0.0
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
0.2.0
0.1.0
0.1.0-beta.10
0.1.0-beta.9
0.1.0-beta.8
0.1.0-beta.7
0.1.0-beta.6
0.1.0-beta.5
0.1.0-beta.4
0.1.0-beta.3
0.1.0-beta.2
0.1.0-beta.1
0.1.0-beta.0
基于 Vue3 的弹幕交互组件
github.com/hellodigua/vue-danmaku
vue3-danmaku
/
src
/
main.ts
15 lines
(10 loc)
•
190 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
{ createApp }
from
'vue'
import
App
from
'./App.vue'
const
app =
createApp
(
App
) app.
mount
(
'#app'
)
window
.
app
= app
declare
global
{
interface
Window
{
app
:
typeof
app } }