You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
422 B
Vue
22 lines
422 B
Vue
<script setup lang="ts">
|
|
type Post = {
|
|
title: String
|
|
description: String | null | undefined
|
|
}
|
|
|
|
const props = defineProps<Post>()
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div class="flex w-full flex-col gap-6 bg-secondary p-6">
|
|
<div class="h-full truncate text-xl font-bold">
|
|
{{ props.title }}
|
|
</div>
|
|
<div class="h-full">
|
|
{{ props.description }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|