From 54de368642519fc900ce89e4ee38989555054a05 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Mon, 5 Sep 2022 18:56:37 +0200 Subject: [PATCH] fix: use typed useStore --- src/composables/useList.ts | 2 +- src/views/list/settings/background.vue | 2 +- src/views/list/settings/edit.vue | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/composables/useList.ts b/src/composables/useList.ts index 6db3ad1d..e372da3c 100644 --- a/src/composables/useList.ts +++ b/src/composables/useList.ts @@ -1,6 +1,6 @@ import {watch, reactive, shallowReactive, unref, toRefs, readonly} from 'vue' import type {MaybeRef} from '@vueuse/core' -import {useStore} from 'vuex' +import {useStore} from '@/store' import ListService from '@/services/list' import ListModel from '@/models/list' diff --git a/src/views/list/settings/background.vue b/src/views/list/settings/background.vue index 16a1c10b..3a5fd95c 100644 --- a/src/views/list/settings/background.vue +++ b/src/views/list/settings/background.vue @@ -101,7 +101,7 @@ export default defineComponent({ name: 'list-setting-background' })