chore: update demo i18n (#9342)

This commit is contained in:
neverland
2021-08-27 10:24:37 +08:00
committed by GitHub
parent 253e4a7988
commit 125f77a48b
83 changed files with 167 additions and 268 deletions
+2 -4
View File
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { useTranslate } from '@demo/use-translate';
const i18n = {
const t = useTranslate({
'zh-CN': {
text: '文本',
dashed: '虚线',
@@ -16,9 +16,7 @@ const i18n = {
contentPosition: 'Content Position',
customStyle: 'Custom Style',
},
};
const t = useTranslate(i18n);
});
</script>
<template>