make app name changable and move settings parameter to settings close #19

This commit is contained in:
Adrian Zürcher
2025-11-12 10:20:44 +01:00
parent c7fe7490f1
commit f8b79de6a2
11 changed files with 40 additions and 23 deletions

View File

@@ -3,7 +3,7 @@
<q-form ref="refForm">
<q-item-section class="q-gutter-md q-pa-md">
<q-card :class="['q-gutter-xs q-items-center q-pa-lg', { shake: shake }]">
<div class="text-h5 text-primary text-center">{{ productName }}</div>
<div class="text-h5 text-primary text-center">{{ appName }}</div>
<q-input
ref="refUserInput"
dense
@@ -47,7 +47,7 @@
</template>
<script setup lang="ts">
import { productName } from '../../../package.json';
import { appName } from '../models/settings';
import { ref } from 'vue';
import { useNotify } from '../general/useNotify';
import { useLogin } from './useLogin';