Timers and other features for Heroes of the Storm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 line
530 B

  1. <template>
  2. <div class="objective" :click="onClick">
  3. <div>Here is the picture</div>
  4. <div>Here is the objective name</div>
  5. <div><Timer ref="timer" initialTime="90" /></div>
  6. </div>
  7. </template>
  8. <script>
  9. import Timer from '@/components/Battleground/Timer'
  10. export default {
  11. name: 'Objective',
  12. data () {
  13. return {
  14. name: '',
  15. initialSpawnTime: 90,
  16. respawnTime: 120
  17. }
  18. },
  19. methods: {
  20. },
  21. components: {
  22. Timer
  23. }
  24. }
  25. </script>
  26. <style scoped>
  27. </style>