2025-12-20 14:20:26 +08:00

14 lines
216 B
JavaScript

import dayjs from 'dayjs'
const install = function(Vue, opts) {
Vue.dayjs = dayjs
Vue.prototype.$dayjs = dayjs
}
const DateFormatPlugin = {
install: install,
dayjs: dayjs
}
export default DateFormatPlugin