Fixed Typescript Error in MultiSelect.vue

- Wrong import from old location
This commit is contained in:
adroslice 2023-04-11 20:41:26 +02:00
parent b24bfe626e
commit 69066f0ad2

View file

@ -1,7 +1,6 @@
<!-- Wrapper component that sets "multiple" on DropdownInput to true and declares its type to be an array of any -->
<script setup lang="ts">
import { Index } from "./DropdownInput.vue";
import { equals } from "../../util";
import { equals, Index } from "../../util";
const props = withDefaults(defineProps<{
// Two-Way Bindings (v-model)
modelValue?: Index[],