加一个div

This commit is contained in:
flykhan 2023-03-12 10:49:32 +08:00
parent 38bcba6bdf
commit 748d015cb9
1 changed files with 6 additions and 4 deletions

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>