EmbedExperiment.vue 287 B

12345678910111213
  1. <script setup lang="ts">
  2. defineProps<{
  3. url: string
  4. }>()
  5. </script>
  6. <template>
  7. <iframe
  8. frameborder="0"
  9. class="w-full aspect-video border-inset-0 b-1 b-gray-500 border-opacity-50 rounded"
  10. src="https://playground.tresjs.org/experiments/tres-donut/"
  11. ></iframe>
  12. </template>