webfansplz / vuejs-challenges

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

13 - DOM传送门 #2684

Open whitevenus opened 4 months ago

whitevenus commented 4 months ago
<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>