webfansplz / vuejs-challenges

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

13 - DOM传送门 #2717

Open Ly-TiR opened 2 months ago

Ly-TiR commented 2 months ago

const msg = 'Hello World';
</script>

<template>
  <!-- 使用 <Teleport></Teleport> 把模板片段传送到 body 标签下 -->
  <Teleport to="body">
    <span>{{ msg }}</span>
  </Teleport>
</template>