hide click if nothing happened

This commit is contained in:
Dys 2022-03-28 11:30:24 +08:00
parent e23124bb1a
commit 42aa0f5f8e

View File

@ -67,6 +67,6 @@ export default {
@something-happened="somethingHappened = true"
/>
</div>
<span v-if="!nothingHappened">Note: Click an entry to hide it in the future.</span>
<span v-if="!nothingHappened && somethingHappened">Note: Click an entry to hide it in the future.</span>
</ModalWrapper>
</template>