mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
15 lines
330 B
Vue
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>
|