SandboxDemo.vue 207 B

12345678910
  1. <script setup lang="ts">
  2. defineProps<{ url: string }>()
  3. </script>
  4. <template>
  5. <iframe
  6. :src="url"
  7. class="w-full my-16 rounded shadow-lg outline-none border-none aspect-4/3"
  8. ></iframe>
  9. </template>