VUE3之其它组件

teleport

可以内容挂载到别的标签下:

<template>
    <div class="app">
        <teleport to='#sk'>
            <h2>当前计数</h2>
            <button>+1</button>
            <hello-world/>
        </teleport>
        <teleport to='#sk'>
            <span>呵呵呵</span>
        </teleport>
    </div>
</template>

发表评论