UNPKG

animated-number-vue

Version:

A vue component with number animation

17 lines (14 loc) 313 B
<title>AnimatedNumber demo</title> <script src="https://unpkg.com/vue"></script> <script src="./AnimatedNumber.umd.js"></script> <link rel="stylesheet" href="./AnimatedNumber.css"> <div id="app"> <demo></demo> </div> <script> new Vue({ components: { demo: AnimatedNumber } }).$mount('#app') </script>