vuejs-challenges icon indicating copy to clipboard operation
vuejs-challenges copied to clipboard

13 - DOM Portal

Open imamnf opened this issue 11 months ago • 0 comments

<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>

imamnf avatar Mar 27 '24 09:03 imamnf