lists #4

Merged
floatingghost merged 17 commits from :lists into develop 2022-06-20 13:10:01 +00:00
2 changed files with 3 additions and 8 deletions
Showing only changes of commit ab7001ed20 - Show all commits

View file

@ -10,12 +10,7 @@ library.add(
const ListCard = {
props: [
'list'
],
methods: {
listLink (id) {
return '/lists/' + id
}
}
]
}
export default ListCard

View file

@ -1,13 +1,13 @@
<template>
<div class="list-card">
<router-link
:to="listLink(list.id)"
:to="{ name: 'list-timeline', params: { id: list.id } }"
class="list-name"
>
{{ list.title }}
</router-link>
<router-link
:to="listLink(list.id) + '/edit'"
:to="{ name: 'list-edit', params: { id: list.id } }"
class="button-list-edit"
>
<FAIcon