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

13 - DOM Portal

Open zhang13pro opened this issue 2 years ago • 0 comments

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

zhang13pro avatar Sep 20 '22 23:09 zhang13pro