美文网首页
vue3 Suspense组件

vue3 Suspense组件

作者: ME88 | 来源:发表于2022-08-23 01:07 被阅读0次

    异步子组件加载时候会耗费一定的时间,此组件可显示loading提示

    <Suspense>

    <template #default>     //固定写法

    <asyncComponent />    //异步子组件

    </template>

    <template v-slot:fallback>     //固定写法

    <h1>loading... </h1>

    </template>

    </Suspense>

    相关文章

      网友评论

          本文标题:vue3 Suspense组件

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