Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 8581ece

Browse files
committed
format the code
1 parent 5d5b975 commit 8581ece

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/post/Post.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div class="post">
3-
<Vote
3+
<vote
44
:post-id="postData.postId"
55
:votes-count="postData.voters.votesCount"
66
:is-voted="postData.voters.viewerVote"

src/pages/posts/_slug/Index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div v-if="isPostExist" class="viewpost">
44
<div class="viewpost__vote">
55
<div>
6-
<Vote
6+
<vote
77
:post-id="post.postId"
88
:votes-count="post.voters.votesCount"
99
:is-voted="post.voters.viewerVote"

0 commit comments

Comments
 (0)