| 12345678910111213141516 |
- <template>
- <text>{{ !!_t ? t(_t, { ...options }) : '' }}</text>
- </template>
- <script setup>
- import { t } from '@/locale';
- const props = defineProps({
- _t: String,
- options: {
- type: Object,
- default: () => ({})
- }
- })
- // const { t } = useI18n();
- </script>
|