vue-dayjs-plugin
v1.0.0
Published
A small wrapper for integrating dayjs to Vuejs
Downloads
1,194
Maintainers
Readme
vue-dayjs
A small wrapper for integrating dayjs to Vuejs
Dayjs is a minimalist (Fast 2kB) JavaScript library for modern browsers with a largely Moment.js-compatible API. If you use Moment.js, you already know how to use Day.js.
Installation
npm install vue-dayjs-plugin
Usage
import VueDayjs from 'vue-dayjs-plugin'
Vue.use(VueDayjs)
Example
JS
this.$date('2018-08-08').format('DD/MM/YYYY');
HTML
<span> {{ $date('2018-08-08').format('DD/MM/YYYY') }} </span>