mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 07:17:55 +01:00
13 lines
325 B
JavaScript
Vendored
13 lines
325 B
JavaScript
Vendored
import m from 'mithril';
|
|
import {createInertiaApp} from '@maicol07/inertia-mithril';
|
|
import './_material';
|
|
|
|
// noinspection JSIgnoredPromiseFromCall
|
|
createInertiaApp({
|
|
title: (title) => `${title} - OpenStaManager`,
|
|
resolve: async (name) => import(`./Views/${name}`),
|
|
setup({ el, app }) {
|
|
m.mount(el, app);
|
|
},
|
|
});
|