.mask { position: absolute; left: 0; right: 0; top: 0; bottom: 0; background: #000; opacity: .5; } </style> </head> <body> <div id="root"></div> <script> // teleport 传送门 var app = Vue.createApp({ data(){ return { show: false } }, methods:{ handleBtnClick(){ this.show = !this.show } }, template:` <div class="area"> <button @click="handleBtnClick">按钮</button>
<teleport to="body"> <div class="mask" v-show="show"> </div> </teleport> </div> `, })
const vm = app.mount('#root')
</script>
</body> </html>