Vue3 Teleport 一、用法 使用 Teleport 标签包裹希望被传送的元素 通过 to 属性指明希望传送到的位置,to 属性的值应按照 css 选择器填写 123<Teleport to="选择器"> ···</Teleport> 二、示例12345<template> <teleport to="body"> <p>哈哈</p> </teleport></template> 参考 Vue.js 开发 前端 Vue3 Spring Boot Redis 上一篇 Redis 订阅 下一篇 Please enable JavaScript to view the comments