Wishlist/resources/views/Auth/AuthButtons.vue

25 lines
531 B
Vue

<script>
export default {
name: "AuthButtons"
}
</script>
<template>
<div class="d-flex flex-column justify-center align-center pa-3 w-33">
<router-link to="/login" class="w-100 ma-2">
<v-btn class="w-100">
Вход
</v-btn>
</router-link>
<router-link to="/registration" class="w-100 ma-2">
<v-btn class="w-100">
Регистрация
</v-btn>
</router-link>
</div>
</template>
<style scoped>
</style>