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

13 - DOM传送门

Open zhipengbird opened this issue 9 months ago • 0 comments

// 你的答案
<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>

zhipengbird avatar May 11 '24 03:05 zhipengbird