Boot file: how to 'wait' for $axios and cordova plugin to be available?
-
I a new boot file I’ve the need to use both a cordova plugin and axios.
Is there a way to be sure that axios and cordova plugins are really available before trying to use them?
-
import axios from ‘axios’
if (axios) {
}
-
@realtebo they are available when your app is created.