Skip to content

Commit

Permalink
fix breaking changes from vue-tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
felixcicatt committed Jan 23, 2025
1 parent b144986 commit 59ac925
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ import { watchEffect } from "vue";
import ContactmomentenOverzicht from "./ContactmomentenOverzicht.vue";
import { fetchContactmomentenByKlantId } from "./service";
defineSlots();
const props = defineProps<{
klantUrl: string;
gebruikKlantInteracties: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ import { watchEffect } from "vue";
import ContactmomentenOverzicht from "./ContactmomentenOverzicht.vue";
import { fetchContactmomentenByObjectUrl } from "./service";
defineSlots();
const props = defineProps<{
objectUrl: string;
gebruikKlantInteracties: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ import ContactverzoekenOverzicht from "./ContactverzoekenOverzicht.vue";
import { fetchContactverzoekenByKlantId } from "./service";
import type { ContactverzoekOverzichtItem } from "./types";
defineSlots();
const props = defineProps<{
klantUrl: string;
gebruikKlantInteracties: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ import { search } from "./service";
import type { ContactverzoekOverzichtItem } from "./types";
import ApplicationMessage from "@/components/ApplicationMessage.vue";
defineSlots();
const openKlant2 = ref<boolean>(false);
const store = ensureState({
Expand Down

0 comments on commit 59ac925

Please sign in to comment.