24 lines
425 B
Vue
24 lines
425 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { OpenWalletComponent } from '@/components'
|
||
|
|
|
||
|
|
const emit = defineEmits<{
|
||
|
|
goToCreate: []
|
||
|
|
}>()
|
||
|
|
|
||
|
|
const handleNavigateToCreate = () => {
|
||
|
|
emit('goToCreate')
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="login-tab">
|
||
|
|
<OpenWalletComponent @navigateToCreate="handleNavigateToCreate" />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.login-tab {
|
||
|
|
padding: var(--spacing-lg);
|
||
|
|
}
|
||
|
|
</style>
|