implemented individual list functionality

This commit is contained in:
Edward Tirado Jr 2026-02-25 17:33:37 -06:00
parent 3373380f34
commit c5f74f134d
24 changed files with 592 additions and 109 deletions

View file

@ -13,9 +13,6 @@ const createList = () => {
listName.value = "";
refreshLists();
}).catch((error) => {
if (error.response?.status === 401) {
useAuth().logout();
}
alert(error.message)
});
}
@ -23,11 +20,11 @@ const createList = () => {
<template>
<form @submit.prevent="createList">
<label for="list_name">Add List</label>
<label for="list_name">Add MovieList</label>
<div>
<input v-model="listName"
name="list_name"
placeholder="List Name"
placeholder="MovieList Name"
type="text">
<button>Add</button>
</div>