pingcrm/resources/js/app.js
2021-12-08 16:15:39 +01:00

17 lines
420 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)
},
})