mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 15:27:43 +01:00
10 lines
292 B
JavaScript
Vendored
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);
|