Files
login/components/Logo.vue
2026-01-28 14:55:28 +07:00

20 lines
308 B
Vue

<template>
<div class="logo">
<a class="link" @click="$router.push('/signin')">
<img width="90px" src="/logo.png" />
</a>
</div>
</template>
<style>
.logo,
.logo .link {
display: flex;
justify-content: center;
align-items: center;
}
.logo .link {
text-decoration: none;
}
</style>