mirror of
https://github.com/h3poteto/whalebird-desktop
synced 2025-01-31 17:45:22 +01:00
refs #397 Add router link to lists
This commit is contained in:
parent
dc87b3354e
commit
39f714e0da
@ -1,9 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="lists">
|
<div id="lists">
|
||||||
<div class="list" v-for="list in lists" :key="list.id">
|
<div class="list" v-for="list in lists" :key="list.id">
|
||||||
<span class="title">
|
<router-link tag="span" class="title" :to="`/${id()}/lists/${list.id}`">
|
||||||
{{ list.title }}
|
{{ list.title }}
|
||||||
</span>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -31,6 +31,9 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
id () {
|
||||||
|
return this.$route.params.id
|
||||||
|
},
|
||||||
fetch () {
|
fetch () {
|
||||||
return this.$store.dispatch('TimelineSpace/Contents/Lists/Index/fetchLists')
|
return this.$store.dispatch('TimelineSpace/Contents/Lists/Index/fetchLists')
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
@ -49,6 +52,10 @@ export default {
|
|||||||
.list {
|
.list {
|
||||||
padding: 12px 24px;
|
padding: 12px 24px;
|
||||||
border-bottom: 1px solid var(--theme-border-color);
|
border-bottom: 1px solid var(--theme-border-color);
|
||||||
|
|
||||||
|
.title {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user