mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-21 08:52:21 +00:00
15 lines
310 B
JavaScript
Executable File
15 lines
310 B
JavaScript
Executable File
import {CoreNavigationCmpt} from '../components/navigation/Navigation.js';
|
|
import DashboardAdmin from '../components/Dashboard/Admin.js';
|
|
|
|
Vue.createApp({
|
|
data: () => ({
|
|
appSideMenuEntries: {}
|
|
}),
|
|
components: {
|
|
CoreNavigationCmpt,
|
|
DashboardAdmin
|
|
},
|
|
mounted() {
|
|
}
|
|
}).mount('#main');
|