We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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>
There was an error while loading. Please reload this page.