1
0

feat: task relatedTasks script setup

This commit is contained in:
Dominik Pschenitschni
2022-09-15 12:52:38 +02:00
parent a38075f376
commit 943d5f7975
7 changed files with 239 additions and 226 deletions

View File

@ -153,10 +153,10 @@ export const useListStore = defineStore('list', {
},
})
export function useList(listId: MaybeRef<ListModel['id']>) {
export function useList(listId: MaybeRef<IList['id']>) {
const listService = shallowReactive(new ListService())
const {loading: isLoading} = toRefs(listService)
const list : ListModel = reactive(new ListModel({}))
const list: ListModel = reactive(new ListModel())
const {t} = useI18n({useScope: 'global'})
watch(