mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
17 lines
470 B
JavaScript
17 lines
470 B
JavaScript
import {CoreNavigationCmpt} from '../../components/navigation/Navigation.js';
|
|
import CoreDashboard from '../../components/Dashboard/Dashboard.js';
|
|
import PluginsPhrasen from '../../plugins/Phrasen.js';
|
|
|
|
const app = Vue.createApp({
|
|
name: 'DashboardPreviewApp',
|
|
data: () => ({
|
|
appSideMenuEntries: {}
|
|
}),
|
|
components: {
|
|
CoreNavigationCmpt,
|
|
CoreDashboard
|
|
}
|
|
});
|
|
app.use(PluginsPhrasen);
|
|
app.directive('tooltip', primevue.tooltip);
|
|
app.mount('#main'); |