1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-24 15:27:43 +01:00
2021-07-30 22:56:43 +02:00

10 lines
292 B
JavaScript
Vendored

import m from 'mithril';
import {InertiaApp} from '@tebe/inertia-mithril';
const app = document.getElementById('app');
InertiaApp.initialPage = JSON.parse(app.dataset.page);
InertiaApp.resolveComponent = async (name) => (await import(`./Views/${name}`)).default;
m.mount(app, InertiaApp);