UNPKG
@juanjosegongi/vue-mouseflow
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Vue.js plugin to add Mouseflow tracking to your application
github.com/JuanJoseGonGi/vue-mouseflow
@juanjosegongi/vue-mouseflow
/
src
/
useApi.ts
11 lines
(7 loc)
•
253 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ inject }
from
'vue'
;
export
const
VueMouseflowSymbol
=
Symbol
();
export
function
useToasted
(
) {
const
VueMouseflow
=
inject
(
VueMouseflowSymbol
);
if
(!
VueMouseflow
)
throw
new
Error
(
'No VueMouseflow provided!!!'
);
return
VueMouseflow
; }