elk/components/user/UserSignInEntry.vue
Alex 09f80f291b
feat(i18n): improve translations (#219)
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
Co-authored-by: 沈青川 <46062972+ShenQingchuan@users.noreply.github.com>
2022-11-29 18:55:28 +08:00

11 lines
263 B
Vue

<template>
<div p8 flex="~ col gap4">
<div text-sm text-secondary>
{{ $t('nav_user.sign_in_desc') }}
</div>
<button class="btn-solid text-center" @click="openSigninDialog()">
{{ $t('action.sign_in') }}
</button>
</div>
</template>