There was an error while loading. Please reload this page.
set boolean data isLoading to your component
isLoading
<div v-if="isLoading"> <ListItem v-for="n in 4" v-bind:key="n" :loading="isLoading"></ListItem> </div>
<div v-if="!isLoading"> <ListItem v-for="data in datas" v-bind:key="data"> <template #title></template> <template #info></template> <template #content></template> <template #actions></template> </ListItem> </div>