mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
33 lines
855 B
Vue
33 lines
855 B
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
const props = defineProps({
|
|
show: Boolean,
|
|
});
|
|
|
|
let show = ref(false);
|
|
</script>
|
|
|
|
<template>
|
|
<transition name="accordion">
|
|
<div class="rounded-sm my-1">
|
|
<div class="border border-b-0 bg-gray-100 px-4 p-2">
|
|
<button @click="show = !show"
|
|
class="w-full flex justify-between text-gray-800 font-bold hover:underline focus:outline-none" type="button">
|
|
<span class="w-full text-left">
|
|
<slot name="title">Accordion Title</slot>
|
|
</span>
|
|
<span class="ml-2">
|
|
<i class="fa fa-chevron-down"></i>
|
|
</span>
|
|
</button>
|
|
</div>
|
|
<div v-show="show" class="border px-4 py-2">
|
|
<slot name="body">Accordion Body</slot>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
</template>
|
|
|
|
<style lang="postcss"></style>
|
|
|
|
|