mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-20 23:11:43 +01:00
docs: add roadmap page with volta board
This commit is contained in:
14
docs/components/content/VoltaEmbed.vue
Normal file
14
docs/components/content/VoltaEmbed.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user