Advertisement
Guest User

Untitled

a guest
Nov 15th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <h2>Comments</h2>
  2. <hr class="mb-2">
  3. <v-layout wrap>
  4. <v-flex xs12 v-for="comment in module.comments" :key="comment.id" class="mb-2">
  5. <v-card>
  6. <v-card-title primary-title>
  7. <div class="headline">{{comment.user.name}}</div>
  8. <v-spacer></v-spacer>
  9. <span class="grey--text align-end">{{comment.created_at}}</span>
  10. </v-card-title>
  11. <v-card-text>
  12. {{comment.content}}
  13. </v-card-text>
  14. </v-card>
  15. </v-flex>
  16. <v-flex xs12 class="mb-3" v-if="$auth.isLogged()">
  17. <module-comment v-model="module" v-on:comment="reload"></module-comment>
  18. </v-flex>
  19. </v-layout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement