Skip to content
Snippets Groups Projects
Commit 15c94f6b authored by syuilo's avatar syuilo
Browse files

✌️

parent d3639b2d
No related branches found
No related tags found
No related merge requests found
require('./bytes');
require('./number');
import Vue from 'vue';
Vue.filter('number', (n) => {
return n.toLocaleString();
});
......@@ -27,15 +27,15 @@
</div>
<div class="status">
<a>
<b>{{ user.posts_count }}</b>
<b>{{ user.posts_count | number }}</b>
<i>%i18n:mobile.tags.mk-user.posts%</i>
</a>
<a :href="`${user.username}/following`">
<b>{{ user.following_count }}</b>
<b>{{ user.following_count | number }}</b>
<i>%i18n:mobile.tags.mk-user.following%</i>
</a>
<a :href="`${user.username}/followers`">
<b>{{ user.followers_count }}</b>
<b>{{ user.followers_count | number }}</b>
<i>%i18n:mobile.tags.mk-user.followers%</i>
</a>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment