一、Vue3 中 Teleport 的作用是什么?
将一个元素挂载到一个指定的dom元素上;示例:
<body><div id="app" style="position: relative;"><h3>Tooltips with Vue 3 Teleport</h3><div><modal-button></modal-button></div></div>const app = Vue.createApp({});app.component('modal-button', {template: `<button @click="modalOpen = true">Open full screen modal! (With teleport!)</button><teleport to="body"><div v-if="modalOpen" class="modal"><div>I'm a teleported modal!(My parent is "body")<button @click="modalOpen = false">Close</button></div></div></teleport>`,data() {return {modalOpen: false}}})app.mount('#app')</body>
二、说一下vue3的composition api?
函数式编程,提供了一些列新的api
