2022-09-20 19:59:52 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div class="w-full relative">
|
|
|
|
<div class="cursor-pointer" @click="trigger">
|
|
|
|
<slot name="title" />
|
|
|
|
</div>
|
|
|
|
<div class="text-gray-400 hover:text-gray-600 absolute -right-2 -top-1 cursor-pointer p-2" @click="trigger">
|
2023-08-30 07:58:29 +00:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 transition transform duration-500"
|
|
|
|
:class="{'rotate-180':showContent}" viewBox="0 0 20 20" fill="currentColor"
|
|
|
|
>
|
|
|
|
<path fill-rule="evenodd"
|
|
|
|
d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-11a1 1 0 10-2 0v3.586L7.707 9.293a1 1 0 00-1.414 1.414l3 3a1 1 0 001.414 0l3-3a1 1 0 00-1.414-1.414L11 10.586V7z"
|
|
|
|
clip-rule="evenodd"
|
|
|
|
/>
|
2022-09-20 19:59:52 +00:00
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-10-24 09:00:54 +00:00
|
|
|
<VTransition>
|
2022-09-20 19:59:52 +00:00
|
|
|
<div v-if="showContent" class="w-full">
|
|
|
|
<slot />
|
|
|
|
</div>
|
2023-10-24 09:00:54 +00:00
|
|
|
</VTransition>
|
2022-09-20 19:59:52 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-10-24 09:00:54 +00:00
|
|
|
<script setup>
|
2023-01-21 11:57:37 +00:00
|
|
|
import VTransition from './transitions/VTransition.vue'
|
2023-10-24 09:00:54 +00:00
|
|
|
import { ref, defineProps, defineEmits } from 'vue'
|
2023-08-30 07:58:29 +00:00
|
|
|
|
2023-10-24 09:00:54 +00:00
|
|
|
const props = defineProps({
|
|
|
|
modelValue: { type: Boolean, default: null }
|
|
|
|
})
|
|
|
|
|
|
|
|
const showContent = ref(props.modelValue)
|
|
|
|
const emit = defineEmits()
|
|
|
|
|
|
|
|
const trigger = () => {
|
|
|
|
showContent.value = !showContent.value
|
|
|
|
emit('update:modelValue', showContent.value)
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
</script>
|