mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-26 09:04:28 +00:00
15 lines
351 B
JavaScript
15 lines
351 B
JavaScript
import {CoreNavigationCmpt} from '../../components/navigation/Navigation.js';
|
|
import DashboardAdmin from '../../components/Dashboard/Admin.js';
|
|
|
|
const app = Vue.createApp({
|
|
data: () => ({
|
|
appSideMenuEntries: {}
|
|
}),
|
|
components: {
|
|
CoreNavigationCmpt,
|
|
DashboardAdmin
|
|
}
|
|
});
|
|
app.config.unwrapInjectedRef = true;
|
|
app.mount('#main');
|