implement.js 261 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 /* eslint-disable no-param-reassign */ import dayjs from 'dayjs'; import 'dayjs/locale/ko'; export default { install(Vue, options) { dayjs.locale(options.locale, options.localeObject); Vue.prototype.$dayjs = dayjs; }, }; export const day = dayjs;