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
494 B
Vue

<script setup lang="ts">
type Post = {
title: String
description: String
}
const props = defineProps<Post>()
</script>
<template>
<div>
<div class="flex w-full flex-col gap-6 rounded-md border border-lightgray 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>