mirror of
https://github.com/rustfs/console.git
synced 2026-09-19 09:52:25 +08:00
12 lines
158 B
Vue
12 lines
158 B
Vue
<template>
|
|
<div>
|
|
{{ t('Header') }}
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
const { t } = useI18n()
|
|
</script>
|