zhao/imports/ui/components/WaitingRoom.vue

17 lines
259 B
Vue
Raw Normal View History

2020-11-27 06:36:02 +00:00
<template>
2020-11-27 07:16:15 +00:00
<div>
<h1>Waiting for players...</h1>
<p>Join code: {{ joinCode.toUpperCase() }}</p>
<p>Players: {{ players }}</p>
</div>
2020-11-27 06:36:02 +00:00
</template>
<script>
export default {
2020-11-27 07:16:15 +00:00
props: ["joinCode", "players"],
2020-11-27 06:36:02 +00:00
}
</script>
<style scoped>
</style>