多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
762 B

2 months ago
<script setup lang="ts">
import { YoutubeVue3 } from 'youtube-vue3'
import type { ProductFeedItem } from '../../../lib/types'
import { extractYoutubeVideoId } from '../../../utils/urlUtils'
2 months ago
const props = defineProps<{
item: ProductFeedItem
isRecent?: boolean
2 months ago
}>()
const {
item: { Title, Description, Url },
} = props
2 months ago
</script>
<template>
<div class="flex flex-col mt-6 gap-5">
<YoutubeVue3 :videoid="extractYoutubeVideoId(Url)" :height="470" :width="764" :autoplay="0" :controls="1" />
<div class="text-gray-900 font-bold text-2xl">
{{ Title }}
2 months ago
</div>
<div class="text-gray-900">
{{ Description.length > 200 ? `${Description.slice(0, 280)}...` : Description }}
</div>
2 months ago
</div>
</template>
<style lang="scss"></style>