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