27 lines
482 B
Vue
27 lines
482 B
Vue
<template>
|
|
<div class="logo">
|
|
<figure class="image is-clickable link" @click="$router.push('/signin')">
|
|
<img v-if="isLogoMain" src="/logo-main.png" />
|
|
<img v-else src="/logo.png" />
|
|
</figure>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
const props = defineProps({
|
|
isLogoMain: Boolean,
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.logo {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.link {
|
|
text-decoration: none;
|
|
width: 150px;
|
|
}
|
|
}
|
|
</style>
|