webfansplz / vuejs-challenges

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

13 - DOM传送门 #2712

Open zhipengbird opened 2 months ago

zhipengbird commented 2 months ago
// 你的答案
<script setup>
import { Teleport } from 'vue';
const msg = 'Hello World';
</script>

<template>
  <!-- Renders it to a child element of the `body` -->

  <Teleport to="body">
    <span>{{ msg }}</span>
  </Teleport>
</template>