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 bind these three in just Vue.use
?
Something like this ( incorrect )
Vue.use([
{ Toaster, {timeout: 5000} },
{ VueAlert },
{ VueSweetAlert }
])
Thank you!