UNPKG
vue3-interactjs
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
interactjs component for Vue3
ZugBahnHof/vue3-interactjs
vue3-interactjs
/
src
/
index.ts
12 lines
(9 loc)
•
218 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
Interact
from
"./Interact.vue"
;
import
{
App
,
Plugin
}
from
"vue"
;
const
install = (
app
:
App
):
void
=>
{ app.
component
(
"Interact"
,
Interact
); };
const
plugin
:
Plugin
= { install, };
export
default
plugin;