Timers and other features for Heroes of the Storm
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

34 行
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>