updated list details page to use composition API and typescript

This commit is contained in:
Edward Tirado Jr 2025-04-07 21:10:06 -05:00
parent 823bef5604
commit 12937783f8
3 changed files with 172 additions and 102 deletions

14
src/types/movie.ts Normal file
View file

@ -0,0 +1,14 @@
export type Movie = {
id: number;
title: string;
added_by: number;
imdb_id: string;
year: number;
critic_score: string;
genre: string;
director: string;
actors: string;
plot: string;
poster: string;
last_watched: string;
};