mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-07 09:29:59 +00:00
fix: spoiler state
This commit is contained in:
parent
342783eecc
commit
6fee5026bf
1 changed files with 7 additions and 2 deletions
|
@ -1,7 +1,12 @@
|
|||
<script setup lang="ts">
|
||||
const props = defineProps<{ enabled: boolean }>()
|
||||
|
||||
const [showContent, toggleContent] = $(useToggle(!props.enabled))
|
||||
const showContent = ref(!props.enabled)
|
||||
const toggleContent = useToggle(showContent)
|
||||
|
||||
watchEffect(() => {
|
||||
showContent.value = !props.enabled
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -11,5 +16,5 @@ const [showContent, toggleContent] = $(useToggle(!props.enabled))
|
|||
{{ showContent ? 'Show less' : 'Show more' }}
|
||||
</button>
|
||||
</div>
|
||||
<slot v-if="showContent" />
|
||||
<slot v-if="!enabled || showContent" />
|
||||
</template>
|
||||
|
|
Loading…
Reference in a new issue