deleting unused components and restructuring

This commit is contained in:
2025-12-09 17:27:26 +00:00
parent 9d9ea9ac53
commit fb47883e59
6 changed files with 63 additions and 158 deletions

View File

@@ -0,0 +1,13 @@
<script setup>
import { ref, onMounted } from "vue";
const loggedIn = ref(false);
</script>
<template>
<div v-if="!loggedIn">
<h1>login</h1>
<textarea>Username</textarea>
<textarea>Password</textarea>
</div>
</template>