🎨 (app) to kebab-case

This commit is contained in:
Julien Calixte
2022-11-20 12:09:54 +01:00
parent aa12bb432c
commit 9c3216099d
4 changed files with 1 additions and 8 deletions

View File

@@ -9,16 +9,9 @@ const posts = usePosts();
<h2>Last posts</h2>
<div v-for="post in posts" :key="post.href">
<h3>
<a :href="post.href">{{ post.title }}</a>
- <a :href="post.href">{{ post.title }}</a>
</h3>
</div>
</div>
</template>
<style scoped lang="scss">
.blog-posts {
h3 {
font-weight: bold;
}
}
</style>