vuejs-timeago

1.0.0 • Public • Published

vuejs-timeago

Build Status npm version

A simple time-ago component for vuejs


## Installation

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

Props Description Type Required
date date string to calculate time from String true
format optional date format String true
iso set format to iso String false

License

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

Package Sidebar

Install

npm i vuejs-timeago

Weekly Downloads

3

Version

1.0.0

License

none

Unpacked Size

514 kB

Total Files

10

Last publish

Collaborators

  • abakermi