🎨 (post) trailing space

This commit is contained in:
Julien Calixte
2022-11-20 14:03:56 +01:00
parent 471f97388f
commit f7252e6ff8

View File

@@ -7,11 +7,8 @@ const posts = usePosts();
<template>
<div class="blog-posts">
<h2>Last posts</h2>
<div v-for="post in posts" :key="post.href">
<h3>
- <a :href="post.href">{{ post.title }}</a>
</h3>
</div>
<h3 v-for="post in posts" :key="post.href">
- <a :href="post.href">{{ post.title }}</a>
</h3>
</div>
</template>