mirror of https://github.com/nocodb/nocodb
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.
24 lines
479 B
24 lines
479 B
2 months ago
|
<script setup lang="ts">
|
||
|
const { youtubeFeed, loadYoutubeFeed } = useProductFeed()
|
||
|
|
||
|
onMounted(() => {
|
||
|
loadYoutubeFeed()
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="flex gap-2 flex-col">
|
||
|
<FeedYoutubePlayer
|
||
|
v-for="feed in youtubeFeed"
|
||
|
:key="feed.id"
|
||
|
:html_url="feed.html_url"
|
||
|
:name="feed.name"
|
||
|
:body="feed.body"
|
||
|
:published_at="feed.published_at"
|
||
|
:embed_url="feed.embed_url"
|
||
|
/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss"></style>
|