美文网首页
vue学习(67)vue3中的新组件

vue学习(67)vue3中的新组件

作者: 哆啦C梦的百宝箱 | 来源:发表于2022-05-05 15:21 被阅读0次
  1. Fragment
  • 在Vue2中: 组件必须有一个根标签
  • 在Vue3中: 组件可以没有根标签, 内部会将多个标签包含在一个Fragment虚拟元素中
  • 好处: 减少标签层级, 减小内存占用
  1. Teleport
  • 是一种能够将我们的组件html结构移动到指定位置的技术。
<teleport to="移动位置">
    <div v-if="isShow" class="mask">
        <div class="dialog">
            <h3>我是一个弹窗</h3>
            <button @click="isShow = false">关闭弹窗</button>
        </div>
    </div>
</teleport>
  1. Suspense
  • 等待异步组件时渲染一些额外内容,让应用有更好的用户体验
  • 使用步骤:
    1. 异步引入组件
import {defineAsyncComponent} from 'vue'
const Child = defineAsyncComponent(()=>import('./components/Child.vue'))
  1. 使用Suspense包裹组件,并配置好default 与 fallback
<template>
    <div class="app">
        <h3>我是App组件</h3>
        <Suspense>
            <template v-slot:default>
                <Child/>
            </template>
            <template v-slot:fallback>
                <h3>加载中.....</h3>
            </template>
        </Suspense>
    </div>
</template>

相关文章

网友评论

      本文标题:vue学习(67)vue3中的新组件

      本文链接:https://www.haomeiwen.com/subject/eabsyrtx.html