logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

lists.vue (658B)


  1. <template>
  2. <div class="Lists panel panel-default">
  3. <div class="panel-heading">
  4. <div class="title">
  5. {{ $t('lists.lists') }}
  6. </div>
  7. <router-link
  8. :to="{ name: 'lists-new' }"
  9. class="button-default btn new-list-button"
  10. >
  11. {{ $t("lists.new") }}
  12. </router-link>
  13. </div>
  14. <div class="panel-body">
  15. <ListsCard
  16. v-for="list in lists.slice().reverse()"
  17. :key="list"
  18. :list="list"
  19. class="list-item"
  20. />
  21. </div>
  22. </div>
  23. </template>
  24. <script src="./lists.js"></script>
  25. <style lang="scss">
  26. .Lists {
  27. .new-list-button {
  28. padding: 0 0.5em;
  29. }
  30. }
  31. </style>