feat(i18n): 重构国际化组件,添加新的语言支持和功能
All checks were successful
/ build-and-deploy-to-vercel (push) Successful in 1m16s
/ depcheck (push) Successful in 1m38s
/ playwright (push) Successful in 2m46s

This commit is contained in:
严浩
2024-11-07 12:36:37 +08:00
parent a4cc30f816
commit 3eed9a44df
9 changed files with 377 additions and 14 deletions

View File

@ -1,5 +1,6 @@
<script lang="tsx" setup>
import I18nComp from '../components/i18nComp.vue';
import { routes } from 'vue-router/auto-routes';
import I18nComp from '../components/i18nComp/index.vue';
useHead({
// Titles
@ -64,6 +65,9 @@ const FComponent: import('vue').FunctionalComponent<{ prop: string }> = (props,
<div b="1px solid pink" mt-8 p-8>
<SendSms />
</div>
<div b="1px solid pink" mt-8 p-8>
<pre>{{ JSON.stringify(routes, null, 2) }}</pre>
</div>
</template>
<style module>