popper/src/components/GameOver.vue

13 lines
274 B
Vue
Raw Normal View History

2022-10-19 16:22:53 +00:00
<template>
<div class="game-over">
<h2><slot></slot></h2>
<p>Score: {{ score }}</p>
2022-10-20 15:01:56 +00:00
<p>Best streak: {{ streak }}</p>
2022-10-19 16:22:53 +00:00
<small>Click to restart</small>
</div>
</template>
<script setup lang="ts">
2022-10-20 15:01:56 +00:00
defineProps<{ score: number; streak: number }>();
2022-10-19 16:22:53 +00:00
</script>