Files
akmon/pages/info/test/i18n-test.uvue
2026-01-20 08:04:15 +08:00

37 lines
651 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<view class="i18n-test-page">
<view class="section">
<text class="section-title">{{ $t('mt.title.news') }}</text>
<text class="section-desc">{{ $t('prev') }}</text>
</view>
</view>
</template>
<script setup lang="uts">
import { tt } from '@/utils/i18nfun.uts'
// 也可在脚本中直接调用 tSmart参数智能判断
const techCategory = tt('prev')
console.log(techCategory)
// const enLang = tSmart('prev', 'en-US')
</script>
<style>
.i18n-test-page {
padding: 24px;
}
.section {
margin-bottom: 20px;
}
.section-title {
font-size: 18px;
font-weight: bold;
}
.section-desc {
color: #888;
}
</style>