mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-05 12:59:28 +00:00
19 lines
497 B
JavaScript
19 lines
497 B
JavaScript
import {CoreNavigationCmpt} from '../../components/navigation/Navigation.js';
|
|
import DashboardAdmin from '../../components/Dashboard/Admin.js';
|
|
import FhcApi from '../../plugin/FhcApi.js';
|
|
import Phrasen from '../../plugin/Phrasen.js';
|
|
|
|
const app = Vue.createApp({
|
|
name: 'AdminApp',
|
|
data: () => ({
|
|
appSideMenuEntries: {}
|
|
}),
|
|
components: {
|
|
CoreNavigationCmpt,
|
|
DashboardAdmin
|
|
}
|
|
});
|
|
app.config.unwrapInjectedRef = true;
|
|
app.use(FhcApi);
|
|
app.use(Phrasen);
|
|
app.mount('#main'); |