added fixes for rollup build error

This commit is contained in:
Edward Tirado Jr 2025-07-13 12:20:03 -05:00
parent 1f2303abf5
commit ccc2422aa4
15 changed files with 1326 additions and 1561 deletions

View file

@ -27,7 +27,9 @@
</template>
<script lang="ts" setup>
const props = defineProps(["movie"]);
import type { Movie } from "~/types/movie";
const props = defineProps<{ movie: Movie }>();
const emits = defineEmits(["closeModal"]);
const schedule = function (e: Event) {