Last active
October 8, 2022 14:58
-
-
Save dougkusanagi/d884ab2d33703e6f88a35d1a2b2ee53a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "./bootstrap"; | |
import "../css/app.css"; | |
import { createApp, h } from "vue"; | |
import { createInertiaApp, Link, Head } from "@inertiajs/inertia-vue3"; | |
import { InertiaProgress } from "@inertiajs/progress"; | |
import { resolvePageComponent } from "laravel-vite-plugin/inertia-helpers"; | |
import { ZiggyVue } from "../../vendor/tightenco/ziggy/dist/vue.m"; | |
import DashboardLayout from "@/Layout/DashboardLayout.vue"; | |
// const appName = | |
// window.document.getElementsByTagName("title")[0]?.innerText || "Laravel"; | |
createInertiaApp({ | |
title: (title) => `${title} - GuepardoSys`, | |
resolve: async (name) => { | |
const page = ( | |
await resolvePageComponent( | |
`./Pages/${name}.vue`, | |
import.meta.glob("./Pages/**/*.vue") | |
) | |
).default; | |
if (page.layout === undefined) { | |
page.layout = DashboardLayout; | |
} | |
return page; | |
}, | |
setup({ el, app, props, plugin }) { | |
return ( | |
createApp({ render: () => h(app, props) }) | |
.use(plugin) | |
.use(ZiggyVue, Ziggy) | |
.component("Link", Link) | |
.component("Head", Head) | |
.directive('focus', el => el.focus()) // enable v-focus on component | |
.mount(el) | |
); | |
}, | |
}); | |
InertiaProgress.init({ color: "#4B5563" }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment