1
I’m using these components in my code
Vue.use(Toaster, {timeout: 5000})
Vue.use(VueAlert)
Vue.use(VueSweetAlert)
Is there any way I can connect these three into one Vue.use
?
Something like that (incorrect)
Vue.use([
{ Toaster, {timeout: 5000} },
{ VueAlert },
{ VueSweetAlert }
])
Thank you!
I may be wrong, but I don’t think it’s possible.
– Rafael Augusto