UNPKG

@k90mirzaei/vue-toast

Version:

Vue toast notification with tailwindcss

13 lines (10 loc) 286 B
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 };