
* #2 - wip * #2 - wip * #2 - ui fixes to login page * #2 - fix * #2 - fix * #2 - add title to login page * Apply suggestions from code review Co-authored-by: Krzysztof Rewak <krzysztof.rewak@blumilk.pl> * #2 - cr fix * #2 - cr fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> Co-authored-by: Krzysztof Rewak <krzysztof.rewak@blumilk.pl>
25 lines
685 B
JavaScript
25 lines
685 B
JavaScript
import {createApp, h} from 'vue';
|
|
import {createInertiaApp, Head, Link} from '@inertiajs/inertia-vue3';
|
|
import {InertiaProgress} from '@inertiajs/progress';
|
|
import AppLayout from '@/Shared/Layout/AppLayout';
|
|
|
|
createInertiaApp({
|
|
resolve: name => {
|
|
const page = require(`./Pages/${name}`).default;
|
|
|
|
page.layout = page.layout || AppLayout;
|
|
|
|
return page;
|
|
},
|
|
setup({el, App, props, plugin}) {
|
|
createApp({render: () => h(App, props)})
|
|
.use(plugin)
|
|
.component('InertiaLink', Link)
|
|
.component('InertiaHead', Head)
|
|
.mount(el);
|
|
},
|
|
title: title => `${title} - Toby`,
|
|
});
|
|
|
|
InertiaProgress.init();
|