Skip to content

Commit

Permalink
docs: fix error in ContentQuery where clause example (#1643)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettOrmsby committed Oct 31, 2022
1 parent 409f03f commit 954a224
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/4.api/1.components/4.content-query.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ The `not-found`{lang=ts} slot can be used to display a default content before re
<main>
<ContentQuery path="/about/authors" :where="{ type: 'csv' }" v-slot="{ data }">
<ul>
<li v-for="author of authors" :key="author.name">
<li v-for="author of data" :key="author.name">
{{ author.name }}
</li>
</ul>
Expand Down

0 comments on commit 954a224

Please sign in to comment.