🎨 (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> <template>
<div class="blog-posts"> <div class="blog-posts">
<h2>Last posts</h2> <h2>Last posts</h2>
<div v-for="post in posts" :key="post.href"> <h3 v-for="post in posts" :key="post.href">
<h3> - <a :href="post.href">{{ post.title }}</a>
- <a :href="post.href">{{ post.title }}</a> </h3>
</h3>
</div>
</div> </div>
</template> </template>