songshankun
2023-11-13 e6b7921fc2e2b95e4c2b666b372ad611c08e9d62
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
  <div class="current-date-time">
    {{ time }}
  </div>
</template>
 
<script setup lang="ts">
import { useDateFormat, useNow } from '@vueuse/core'
 
const time = useDateFormat(useNow(), 'YYYY[年] MM[月] DD[日] dddd HH:mm:ss', { locales: 'zh-cn' })
</script>
<style scoped lang="scss">
$color: #30decd;
 
.current-date-time {
  color: $color;
  font-size: 20px;
  font-weight: 600;
}
</style>