block-renderer/src/components/EmbedBlock.vue
2020-08-16 16:59:10 +02:00

16 lines
284 B
Vue

<template>
<figure>
<iframe :src="data.embed" :height="data.height" frameborder="0" allowfullscreen class="w-full"></iframe>
<figcaption v-html="data.caption"></figcaption>
</figure>
</template>
<script>
export default {
props: ["data"],
};
</script>
<style>
</style>