mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
02153e469f
- refactoring Api: FHC-API controller for Edit/Update, widgets and presets - delete dashboard with Prompt - phrases
16 lines
394 B
JavaScript
16 lines
394 B
JavaScript
import {CoreNavigationCmpt} from '../components/navigation/Navigation.js';
|
|
import DashboardAdmin from '../components/Dashboard/Admin.js';
|
|
import Phrases from "../plugin/Phrasen.js"
|
|
|
|
Vue.createApp({
|
|
name: 'DashboardAdminApp',
|
|
data: () => ({
|
|
appSideMenuEntries: {}
|
|
}),
|
|
components: {
|
|
CoreNavigationCmpt,
|
|
DashboardAdmin
|
|
},
|
|
mounted() {
|
|
}
|
|
}).use(Phrases).mount('#main'); |