pingcrm/resources/js/app.js
Claudio Dekker 4636218aaa
WIP
2021-12-08 18:40:19 +01:00

15 lines
409 B
JavaScript
Vendored

import { createApp, h } from 'vue'
import { InertiaProgress } from '@inertiajs/progress'
import { createInertiaApp } from '@inertiajs/inertia-vue3'
InertiaProgress.init()
createInertiaApp({
resolve: name => require(`./Pages/${name}`),
title: title => `${title} - Ping CRM`,
setup({ el, App, props, plugin }) {
createApp({ render: () => h(App, props) })
.use(plugin)
.mount(el)
},
})