加一个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>
<PlayGround v-if="$store.state.pk.status === 'playing'" />
<UserIndicator v-if="$store.state.pk.status === 'playing'" />
<MatchGround v-else-if="$store.state.pk.status === 'matching'" />
<ResultBoard v-if="$store.state.pk.loser !== 'none'" />
<div>
<PlayGround v-if="$store.state.pk.status === 'playing'" />
<UserIndicator v-if="$store.state.pk.status === 'playing'" />
<MatchGround v-else-if="$store.state.pk.status === 'matching'" />
<ResultBoard v-if="$store.state.pk.loser !== 'none'" />
</div>
</template>
<script>