mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 10:22:18 +00:00
15 lines
298 B
JavaScript
15 lines
298 B
JavaScript
import LvPopup from '../../../components/Studierendenantrag/Leitung/LvPopup.js';
|
|
import PluginsPhrasen from '../../../plugins/Phrasen.js';
|
|
|
|
const app = Vue.createApp({
|
|
name: 'StudentApp',
|
|
components: {
|
|
LvPopup
|
|
}
|
|
});
|
|
|
|
FhcApps.makeExtendable(app);
|
|
|
|
app
|
|
.use(PluginsPhrasen)
|
|
.mount('#wrapper'); |