logo

pleroma-fe

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

lists.vue (701B)


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