koel/resources/assets/js/components/ui/album-artist/ExpandableContentBlock.vue

20 lines
400 B
Vue
Raw Normal View History

2024-04-04 22:20:42 +00:00
<template>
<article>
<div :class="showingFull ? 'line-clamp-none' : 'line-clamp-[10]'">
<slot />
</div>
<Btn v-if="!showingFull" small class="mt-4" @click.prevent="showingFull = true">
Read More
</Btn>
</article>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import Btn from '@/components/ui/form/Btn.vue'
const showingFull = ref(false)
</script>