mirror of
https://github.com/keven1024/015.git
synced 2026-05-26 07:08:02 +00:00
15 lines
294 B
Vue
15 lines
294 B
Vue
<script setup lang="ts">
|
|
import dayjs from 'dayjs'
|
|
import relativeTime from 'dayjs/plugin/relativeTime'
|
|
import 'dayjs/locale/en'
|
|
import 'dayjs/locale/zh-cn'
|
|
|
|
dayjs.extend(relativeTime)
|
|
|
|
const { locale } = useI18n()
|
|
|
|
watchEffect(() => {
|
|
dayjs.locale(locale.value.toLowerCase())
|
|
})
|
|
</script>
|