Skip to content

Commit

Permalink
chore(slot-loader.vue): fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Apr 12, 2024
1 parent b64925b commit 69a71a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/docs/src/examples/v-data-iterator/slot-loader.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<template>
<v-data-iterator
:items="mice"
:loading="true"
:items-per-page="itemsPerPage"
:loading="true"
>
<template v-slot:default="{ items }">
<v-row>
Expand All @@ -17,14 +17,14 @@
<v-img
:gradient="`to top right, rgba(255, 255, 255, .1), rgba(${item.raw.color}, .15)`"
:src="item.raw.src"
cover
height="150"
cover
></v-img>

<v-list-item
:title="item.raw.name"
lines="two"
density="comfortable"
lines="two"
subtitle="Lorem ipsum dil orei namdie dkaf"
>
<template v-slot:title>
Expand All @@ -34,7 +34,7 @@
</template>
</v-list-item>

<v-table density="compact" class="text-caption">
<v-table class="text-caption" density="compact">
<tbody>
<tr align="right">
<th>DPI:</th>
Expand Down Expand Up @@ -438,6 +438,6 @@
},
],
}
}
},
}
</script>

0 comments on commit 69a71a7

Please sign in to comment.