UNPKG

vue-countup

Version:

A plugin to count up to a figure using Vue.js

15 lines (13 loc) 293 B
/** * Created by Adebola on 03/02/2016. */ import VueCountUpComponent from './VueCountUp.vue'; /* * expose the install method */ export function install(Vue) { /* * Set the component to the Vue object */ Vue.component('vuecountup', VueCountUpComponent); }