another i18n fix

This commit is contained in:
ThatOneCalculator 2022-11-15 11:47:30 -08:00
parent eb4c18eb09
commit f969d8530d

View file

@ -22,7 +22,7 @@ import { i18n } from '@/i18n';
export default defineComponent({
components: {
MkButton
MkButton,
},
props: {
@ -60,7 +60,7 @@ export default defineComponent({
watch(() => props.p, () => {
process();
}, {
immediate: true
immediate: true,
});
const retry = () => {
@ -73,6 +73,7 @@ export default defineComponent({
rejected,
result,
retry,
i18n,
};
}
});