mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-21 08:52:21 +00:00
18 lines
459 B
JavaScript
18 lines
459 B
JavaScript
import {CoreNavigationCmpt} from '../components/navigation/Navigation.js';
|
|
import CoreDashboard from '../components/Dashboard/Dashboard.js';
|
|
import FhcApi from '../../plugin/FhcApi.js';
|
|
import Phrasen from '../../plugin/Phrasen.js';
|
|
|
|
const app = Vue.createApp({
|
|
name: 'DashboardApp',
|
|
data: () => ({
|
|
appSideMenuEntries: {}
|
|
}),
|
|
components: {
|
|
CoreNavigationCmpt,
|
|
CoreDashboard
|
|
}
|
|
})
|
|
app.use(FhcApi);
|
|
app.use(Phrasen);
|
|
app.mount('#main'); |