1.2.7 • Published 5 years ago

vue-besutils v1.2.7

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

vue-besutils

npm version npm build npm downloads gzip size: JS npm license

Installing

npm install bes-jstools vue-besutils --save

Get on unpkg

Example

import Vue from 'vue'
import BesUtils from 'bes-jstools'
import VUEBesUtils from 'vue-besutils'


Vue.use(VUEBesUtils, BesUtils)
<template>
  <div>{{ $utils.toDateString(startDate, 'yyyy-dd-MM HH:mm:ss') }}</div>
</template>
<script>
export default {
  created () {
    this.$utils.toDateString(new Date(), 'MM/dd/yyyy HH:mm:ss.SSS')
  }
}
</script>