8 lines
134 B
Vue
8 lines
134 B
Vue
<template></template>
|
|
|
|
<script lang="ts" setup>
|
|
import { useI18n } from 'vue-i18n'
|
|
const { t } = useI18n()
|
|
window['$t'] = t
|
|
</script>
|