mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 12:10:34 +09:00
11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
import { createApp, h } from 'vue'
|
|
import { createInertiaApp } from '@inertiajs/inertia-vue3'
|
|
|
|
createInertiaApp({
|
|
resolve: name => require(`./Pages/${name}`),
|
|
setup({ el, App, props, plugin }) {
|
|
createApp({ render: () => h(App, props) })
|
|
.use(plugin)
|
|
.mount(el)
|
|
},
|
|
}) |