Newer
Older
operation_web / src / components / configure / AlarmLog.vue
@zhangqy zhangqy on 30 Nov 2019 406 bytes 1
<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>