feat: task relatedTasks script setup
This commit is contained in:
parent
a38075f376
commit
943d5f7975
7 changed files with 239 additions and 226 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Reference in a new issue