1.0.0 • Published 4 years ago

vuejs-timeago v1.0.0

Weekly downloads
12
License
-
Repository
github
Last release
4 years ago

vuejs-timeago

Build Status(https://travis-ci.com/abakermi/vuejs-timeago .svg?branch=master) npm version(https://badge.fury.io/js/vuejs-timeago .svg)

A simple time-ago component for vuejs

Install via CDN

<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vuejs-timeago @0.0.1"></script>

<script>
  Vue.use(VueTimeAgo.default)
</script>

Install via NPM

$ npm install vuejs-timeago  --save

Register as Component

import Vue from 'vue'
import VueTimeAgo from 'vuejs-timeago '
export default {
  name: 'App',
  components: {
    VueTimeAgo
  }
}

Register as Plugin

import Vue from 'vue'
import VueTimeAgo from 'vuejs-timeago '
Vue.use(VueTimeAgo)

Usage

<template>
 <vuejs-timeago  date="2020-08-07T11:32:01.592Z" format="DD-MM-YYYY" iso="true" > 
   <slot >
     ago
     </slot>
 </vuejs-timeago >
</template>
<script>
import VFeedYoutube from 'vue-feeds-youtube'
export default {
  name: 'App',
  components: {
    VFeedYoutube
  }
}
</script>

Props

PropsDescriptionTypeRequired
datedate string to calculate time fromStringtrue
formatoptional date formatStringtrue
isoset format to isoStringfalse

License

vuejs-timeago is open-sourced software licensed under the MIT license