1
0
Fork 0
traefik/webui/src/boot/_globals.js
2019-08-26 18:15:41 +02:00

10 lines
212 B
JavaScript

import { APP } from '../_helpers/APP'
import Boot from '../_middleware/Boot'
export default async ({ app, router, store, Vue }) => {
Vue.use(Boot)
APP.root = app
APP.router = router
APP.store = store
}