Files
ui/docs/components/content/VoltaEmbed.vue
2023-05-17 12:16:52 +02:00

15 lines
330 B
Vue

<template>
<iframe :src="src" class="w-full min-h-[calc(100vh/1.5)] border border-gray-200 dark:border-gray-800 rounded-md" />
</template>
<script setup lang="ts">
const props = defineProps({
token: {
type: String,
required: true
}
})
const src = computed(() => `https://volta.net/embed/${props.token}`)
</script>