fix(sth): v-if

This commit is contained in:
BTMuli
2023-04-03 00:00:41 +08:00
parent 871bf03190
commit aed91bcc04
4 changed files with 21 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
<template>
<t-pool v-show="homeStore.pool.show" />
<t-position v-show="homeStore.position.show" />
<t-calendar v-show="homeStore.calendar.show" />
<t-pool v-if="homeStore.pool.show" />
<t-position v-if="homeStore.position.show" />
<t-calendar v-if="homeStore.calendar.show" />
</template>
<script lang="ts" setup>