diff --git a/public/js/apps/Dashboard/Admin.js b/public/js/apps/Dashboard/Admin.js
index 70254c955..e0b21cfb5 100755
--- a/public/js/apps/Dashboard/Admin.js
+++ b/public/js/apps/Dashboard/Admin.js
@@ -1,6 +1,7 @@
import {CoreNavigationCmpt} from '../../components/navigation/Navigation.js';
import DashboardAdmin from '../../components/Dashboard/Admin.js';
import FhcApi from '../../plugin/FhcApi.js';
+import Phrasen from '../../plugin/Phrasen.js';
const app = Vue.createApp({
data: () => ({
@@ -13,4 +14,5 @@ const app = Vue.createApp({
});
app.config.unwrapInjectedRef = true;
app.use(FhcApi);
+app.use(Phrasen);
app.mount('#main');
diff --git a/public/js/apps/Dashboard/Fhc.js b/public/js/apps/Dashboard/Fhc.js
index 89d1e2c1e..8dd8fe44b 100755
--- a/public/js/apps/Dashboard/Fhc.js
+++ b/public/js/apps/Dashboard/Fhc.js
@@ -1,5 +1,6 @@
import FhcDashboard from '../../components/Dashboard/Dashboard.js';
import FhcApi from '../../plugin/FhcApi.js';
+import Phrasen from '../../plugin/Phrasen.js';
const app = Vue.createApp({
data: () => ({
@@ -11,4 +12,5 @@ const app = Vue.createApp({
});
app.config.unwrapInjectedRef = true;
app.use(FhcApi);
+app.use(Phrasen);
app.mount('#content');
diff --git a/public/js/components/Cis/Mylv/LvUebersicht.js b/public/js/components/Cis/Mylv/LvUebersicht.js
new file mode 100644
index 000000000..c21cf200d
--- /dev/null
+++ b/public/js/components/Cis/Mylv/LvUebersicht.js
@@ -0,0 +1,48 @@
+import BsModal from "../../Bootstrap/Modal";
+
+export default {
+
+
+ data(){
+ return {
+ // reactive data
+ items:["lehrveranstaltungsInformationen","Notenlisten","Moodle","Gesamtnote","E-mail","Pinboard","Alle Termine der LV","Anrechnung","Evaluierung","Neue Einmeldung"],
+ lehreinheit:null,
+ stg:null,
+ lv:null,
+
+ result: false,
+ }
+ },
+ mixins:[BsModal],
+ components:{
+ BsModal,
+ },
+ mounted(){
+ this.modal = this.$refs.modalContainer;
+ },
+ template:/*html*/`
+