onCreateApp()

Environment: server, client.
Implemented by: vike-vue.

You need vike-vue to be able to use onCreateApp().

The onCreateApp() hook is called right after the Vue app is created, giving you the opportunity to extend it, typically for registering a Vue plugin.

// /pages/+onCreateApp.js
// Environment: server, client
 
export { onCreateApp }
 
import SomeVuePlugin from 'some-vue-plugin'
 
const onCreateApp = (pageContext) => {
  const { app } = pageContext
  app.use(SomeVuePlugin)
}

Examples

See vike-vue > /examples/full/pages/+onCreateApp.ts

TypeScript

// /pages/+onCreateApp.ts
// Environment: server, client
 
export { onCreateApp }
 
import type { OnCreateAppSync } from 'vike-vue'
import SomeVuePlugin from 'some-vue-plugin'
 
const onCreateApp: OnCreateAppSync = (pageContext): ReturnType<OnCreateAppSync> => {
  const { app } = pageContext
  app.use(SomeVuePlugin)
}