vuejs-challenges
vuejs-challenges copied to clipboard
13 - DOM Portal
// your answers
<script setup>
const msg = "Hello World"
</script>
<template>
<!-- Renders it to a child element of the `body` -->
<teleport to="body">
<span>{{ msg }}</span>
</teleport>
</template>