加一个div

This commit is contained in:
2023-03-12 10:49:32 +08:00
parent 38bcba6bdf
commit 748d015cb9
+6 -4
View File
@@ -1,8 +1,10 @@
<template> <template>
<PlayGround v-if="$store.state.pk.status === 'playing'" /> <div>
<UserIndicator v-if="$store.state.pk.status === 'playing'" /> <PlayGround v-if="$store.state.pk.status === 'playing'" />
<MatchGround v-else-if="$store.state.pk.status === 'matching'" /> <UserIndicator v-if="$store.state.pk.status === 'playing'" />
<ResultBoard v-if="$store.state.pk.loser !== 'none'" /> <MatchGround v-else-if="$store.state.pk.status === 'matching'" />
<ResultBoard v-if="$store.state.pk.loser !== 'none'" />
</div>
</template> </template>
<script> <script>