I'm trying to load dynamic component with Vue 3, and it works fine. But is there should be suspence in this case?
<template>
<component v-for="block in components" :is="{...block.component}" :key="Math.random()" :vars="block.props"></component>
</template>