Files
anahita-front/initialize/auth/otp-code.js
T
mohadese namavar ec84dfd222 init git
2024-06-16 00:22:14 +04:30

18 lines
385 B
JavaScript

export default () => {
const { t } = inject('service')
return reactive({
btns: {
next: {
props: {
label: t("next"),
},
},
try: {
props: {
label: t("tryAgain"),
link: true,
},
},
},
})
}