deleted trash

This commit is contained in:
nquidox 2025-09-12 23:49:38 +03:00
parent bb91ac72df
commit 05424ff8c0

View file

@ -1,20 +1,10 @@
<script setup>
import { useAuthStore } from '@/stores/authStore.js'
const store = useAuthStore()
const logout = () => {
store.logout()
}
</script>
<template>
<div>Home view</div>
<button type="button" @click="logout">no route</button>
<div>Start page view</div>
</template>
<style scoped>
div {
background: green;
}
</style>