webfansplz / vuejs-challenges

Collection of Vue.js challenges
https://vuejs-challenges.netlify.app/
MIT License
2.71k stars 187 forks source link

13 - DOM传送门 #2786

Open deamaruNote opened 2 months ago

deamaruNote commented 2 months ago
<script setup>

const msg = "Hello World"

</script>

<template>
  <!-- 将以下元素渲染成`body`的子元素 -->
  <teleport to="body">
      <span>{{ msg }}</span>
  </teleport>
</template>