npm install dayjs
在使用本地化语言和插件,您首先需要导入它们。
import * as dayjs from 'dayjs'
import * as isLeapYear from 'dayjs/plugin/isLeapYear' // 导入插件
import 'dayjs/locale/zh-cn' // 导入本地化语言
dayjs.extend(isLeapYear) // 使用插件
dayjs.locale('zh-cn') // 使用本地化语言
import * as dayjs from 'dayjs'
import * as relativeTime from 'dayjs/plugin/relativeTime.js'
dayjs.extend(relativeTime)
const now = ref(dayjs().from(dayjs('1990-01-01')))