added missing imports,removed obsolete code

This commit is contained in:
Sascha Kühl 2025-04-30 17:25:12 +02:00
parent 787b9879fc
commit 4108388645
2 changed files with 1 additions and 2 deletions

View File

@ -18,7 +18,6 @@
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
<!-- add to homescreen for ios -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Ionic App" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
</head>

View File

@ -2,7 +2,7 @@
import {ref} from 'vue';
import { useRouter } from 'vue-router';
import backendService from '@/services/BackendService'
import {IonButton, IonContent, IonCol, IonHeader, IonInput, IonPage, IonTitle, IonToolbar, IonCheckbox} from '@ionic/vue';
import {IonButton, IonContent, IonCol, IonHeader, IonInput, IonPage, IonTitle, IonToolbar, IonRow, IonCheckbox} from '@ionic/vue';
const server = ref(backendService.getServer());