You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i had the same problem and this is how it works
i wrote the below code in global-scripts.js file which is located inside of plugins directory:
export default function doSomeThingOnAppMounting(app) {
if (process.client) {
app.app.mounted = function() {
//do whatever you want to be executed in app root vue instance mounted life cycle
}
}
}
I'm wondering if it's possible to access this module from the
context.app
object passed in on plugin initialization. Not seeing it present.The text was updated successfully, but these errors were encountered: