mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-02 19:39:27 +00:00
15 lines
338 B
JavaScript
15 lines
338 B
JavaScript
import {CoreNavigationCmpt} from '../components/navigation/Navigation.js';
|
|
import DashboardAdmin from '../components/Dashboard/Admin.js';
|
|
|
|
Vue.createApp({
|
|
name: 'DashboardAdminApp',
|
|
data: () => ({
|
|
appSideMenuEntries: {}
|
|
}),
|
|
components: {
|
|
CoreNavigationCmpt,
|
|
DashboardAdmin
|
|
},
|
|
mounted() {
|
|
}
|
|
}).mount('#main'); |