Add basic user profiles.
This commit is contained in:
parent
83a376a254
commit
fcccb9df68
5 changed files with 38 additions and 2 deletions
|
@ -18,8 +18,10 @@
|
|||
<div class="user-content">
|
||||
<h4 class="media-heading">
|
||||
{{status.user.name}}
|
||||
<small><a :href="status.user.statusnet_profile_url">{{status.user.screen_name}}</a></small>
|
||||
<small v-if="status.in_reply_to_screen_name"> > <a :href="status.in_reply_to_profileurl">{{status.in_reply_to_screen_name}}</a></small>
|
||||
<small><router-link :to="{ name: 'user-profile', params: { id: status.user.id } }">{{status.user.screen_name}}</router-link></small>
|
||||
<small v-if="status.in_reply_to_screen_name"> >
|
||||
<a :href="status.in_reply_to_profileurl">{{status.in_reply_to_screen_name}}</a>
|
||||
</small>
|
||||
-
|
||||
<small>
|
||||
<router-link :to="{ name: 'conversation', params: { id: status.id } }">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue