7 lines
117 B
JavaScript
7 lines
117 B
JavaScript
import dayjs from 'dayjs'
|
|
|
|
export default (context, inject) => {
|
|
context.$dayjs = dayjs
|
|
inject('dayjs', dayjs)
|
|
}
|