use fhcApps for Studstatus

This commit is contained in:
chfhtw
2025-10-09 10:40:02 +02:00
parent 61600e78b6
commit d88cc77a5c
8 changed files with 16 additions and 4 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ $sitesettings = array(
'fontawesome6' => true,
'phrases' => array(
),
'customJSModules' => array('public/js/apps/lehre/Antrag.js'),
'fhcApps' => array('lehre/Antrag'),
'customCSSs' => array(
'public/css/Fhc.css',
'public/css/components/primevue.css',
@@ -18,7 +18,7 @@ $sitesettings = array(
'lehre',
'person',
),
'customJSModules' => array('public/js/apps/lehre/Antrag/Leitung.js'),
'fhcApps' => array('lehre/Antrag/Leitung'),
'customCSSs' => array(
'public/css/Fhc.css',
'public/css/components/primevue.css',
@@ -8,7 +8,7 @@ $sitesettings = array(
'fontawesome6' => true,
'phrases' => array(
),
'customJSModules' => array('public/js/apps/lehre/Antrag/Student.js'),
'fhcApps' => array('lehre/Antrag/Student'),
'customCSSs' => array(
'public/css/Fhc.css',
'public/css/components/primevue.css',
@@ -12,7 +12,7 @@ $sitesettings = array(
'lehre',
'global'
),
'customJSModules' => array('public/js/apps/lehre/Antrag/Lvzuweisung.js'),
'fhcApps' => array('lehre/Antrag/Lvzuweisung'),
'customCSSs' => array(
'public/css/Fhc.css',
'public/css/components/primevue.css',
+3
View File
@@ -20,6 +20,9 @@ const app = Vue.createApp({
};
}
});
FhcApps.makeExtendable(app);
app
.use(PluginsPhrasen)
.mount('#wrapper');
+3
View File
@@ -7,6 +7,9 @@ const app = Vue.createApp({
StudierendenantragLeitung
}
});
FhcApps.makeExtendable(app);
app
.use(PluginsPhrasen)
.use(primevue.config.default,{zIndex: {overlay: 9999}})
@@ -12,6 +12,9 @@ const app = Vue.createApp({
}
}
});
FhcApps.makeExtendable(app);
app
.use(PluginsPhrasen)
.mount('#wrapper');
+3
View File
@@ -7,6 +7,9 @@ const app = Vue.createApp({
LvPopup
}
});
FhcApps.makeExtendable(app);
app
.use(PluginsPhrasen)
.mount('#wrapper');