mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-05 04:49:28 +00:00
16 lines
413 B
JavaScript
16 lines
413 B
JavaScript
import {CoreNavigationCmpt} from '../../components/navigation/Navigation.js';
|
|
import DashboardAdmin from '../../components/Dashboard/Admin.js';
|
|
import PluginsPhrasen from '../../plugins/Phrasen.js';
|
|
|
|
const app = Vue.createApp({
|
|
name: 'AdminApp',
|
|
data: () => ({
|
|
appSideMenuEntries: {}
|
|
}),
|
|
components: {
|
|
CoreNavigationCmpt,
|
|
DashboardAdmin
|
|
}
|
|
});
|
|
app.use(PluginsPhrasen);
|
|
app.mount('#main'); |