pingcrm/resources/js/app.js

18 lines
420 B
JavaScript
Raw Normal View History

2021-12-08 12:15:39 -03:00
import { createApp, h } from 'vue'
import { InertiaProgress } from '@inertiajs/progress'
2021-12-08 12:15:39 -03:00
import { createInertiaApp } from '@inertiajs/inertia-vue3'
2019-03-18 08:53:00 -03:00
2020-09-24 12:37:26 -03:00
InertiaProgress.init()
createInertiaApp({
resolve: name => require(`./Pages/${name}`),
2021-12-08 12:15:39 -03:00
title: title => `${title} - Ping CRM`,
setup({ el, App, props, plugin }) {
createApp({
render: () => h(App, props),
})
.use(plugin)
.mount(el)
},
})