可以把标签,直接暴露在指定路径下
<template>
<div class="content">
<!-- 只有v-if="false" 比teleport层级高 ,v-show='false'层级低-->
<teleport to="body">
<div class="loading">
loading.....
</div>
</teleport>
</div>
</template>
<script setup lang='ts'>
import {ref, reactive} from 'vue'
</script>
<style scoped>
.content{
background: red;
}
.loading{
position: absolute;
top: 0;
left: 0;
background: blue;
}
</style>