Skip to content

Commit

Permalink
✨ modify datetime expression
Browse files Browse the repository at this point in the history
  • Loading branch information
nicejade committed Oct 11, 2022
1 parent 5d2cd1b commit 92da7d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/linksList/LinkItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
>
</div>
<div class="meta-box">
<span class="item">分享于 {{ dateOffset(item.created) }}</span>
<span class="item" v-if="!$isMobile">分享于 {{ item.created | dateConvert }}</span>
<span class="item" v-else>分享于 {{ dateOffset(item.created) }}</span>
<span>阅读数 {{ item.countup + 1 }}</span>
</div>
</div>
Expand Down

0 comments on commit 92da7d2

Please sign in to comment.