<template> <div id="AlarmLog"> <countTo :startVal="startVal" :endVal="endVal" :duration="9000" style="color:white"></countTo> </div> </template> <script> import countTo from "vue-count-to"; export default { name: "AlarmLog", components: { countTo }, data: function() { return { startVal: 99, endVal: 0 }; }, methods: {}, mounted: function() {} }; </script> <style scoped> </style>