Fix order view

This commit is contained in:
2024-09-20 15:30:40 +02:00
parent 871f8cac7a
commit c27dc747b7
7 changed files with 34 additions and 20 deletions

View File

@@ -5,8 +5,8 @@ import { ref } from 'vue';
const userStore = useUserStore()
const showRegisterCard = defineModel("showRegisterCard", { type: Boolean, default: false })
const username = ref("")
const password = ref("")
const username = ref("duranduran")
const password = ref("H4nn0ver")
function startLogin() {
userStore.login(username.value, password.value)