mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-22 01:12:17 +00:00
13 lines
293 B
JavaScript
Executable File
13 lines
293 B
JavaScript
Executable File
import {CoreNavigationCmpt} from '../components/navigation/Navigation.js';
|
|
import CoreDashboard from '../components/Dashboard/Dashboard.js';
|
|
|
|
Vue.createApp({
|
|
data: () => ({
|
|
appSideMenuEntries: {}
|
|
}),
|
|
components: {
|
|
CoreNavigationCmpt,
|
|
CoreDashboard
|
|
}
|
|
}).mount('#main');
|