mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
19 lines
400 B
Vue
19 lines
400 B
Vue
<template>
|
|
<article>
|
|
<div :class="showingFull ? 'line-clamp-none' : 'line-clamp-[10]'">
|
|
<slot />
|
|
</div>
|
|
|
|
<Btn v-if="!showingFull" class="mt-4" small @click.prevent="showingFull = true">
|
|
Read More
|
|
</Btn>
|
|
</article>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
import Btn from '@/components/ui/form/Btn.vue'
|
|
|
|
const showingFull = ref(false)
|
|
</script>
|