i have app build with vue.js.
my main.js file look like this:
import Vue from ‘vue’
import App from ‘./App’
import { Plugins } from ‘@capacitor/core’
const { SplashScreen } = Plugins;
SplashScreen.hide();
new Vue({
render: h => h(App)
}).$mount(’#app’)
no effect. I tried to use mounted and created hooks, doesn’t work either.