Removed import stmt defineEmits & defineProps as they are compiler macros

This commit is contained in:
2024-02-25 16:28:11 +01:00
parent 28a559727f
commit 25da19eaf5
25 changed files with 16 additions and 30 deletions

View File

@@ -35,7 +35,7 @@
</template>
<script setup lang="ts">
import { ref, computed, defineProps, onMounted } from "vue";
import { ref, computed, onMounted } from "vue";
import { useStore } from "vuex";
import type { Ref } from "vue";
import type { IMovie, IShow, IPerson } from "../interfaces/IList";