18 lines
385 B
JavaScript
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,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
} |