8 lines
132 B
Vue
8 lines
132 B
Vue
<template>
|
|
{{ t('common.save') }}
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useI18n } from 'vue-i18n'
|
|
const { t } = useI18n()
|
|
</script> |