UNPKG
@k90mirzaei/vue-toast
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
Vue toast notification with tailwindcss
github.com/k90mirzaei/vue-toast
k90mirzaei/vue-toast
@k90mirzaei/vue-toast
/
src
/
index.js
13 lines
(10 loc)
•
286 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
toast
from
"./toast.vue"
;
import
service
from
"./service"
;
import
"./index.css"
; toast.
install
=
(
app, options = {}
) =>
{
let
plugin =
service
(options); app.
$toast
= plugin; app.
config
.
globalProperties
.
$toast
= plugin; };
export
default
toast;
export
{ toast, service };