异步子组件加载时候会耗费一定的时间,此组件可显示loading提示
<Suspense>
<template #default> //固定写法
<asyncComponent /> //异步子组件
</template>
<template v-slot:fallback> //固定写法
<h1>loading... </h1>
</template>
</Suspense>
异步子组件加载时候会耗费一定的时间,此组件可显示loading提示
<Suspense>
<template #default> //固定写法
<asyncComponent /> //异步子组件
</template>
<template v-slot:fallback> //固定写法
<h1>loading... </h1>
</template>
</Suspense>
本文标题:vue3 Suspense组件
本文链接:https://www.haomeiwen.com/subject/vtnugrtx.html
网友评论