hooked up all items on the list settings section

This commit is contained in:
Edward Tirado Jr 2026-04-05 00:36:20 -05:00
parent 53df349d9f
commit 91173021b2
32 changed files with 578 additions and 178 deletions

View file

@ -21,7 +21,7 @@ const createList = () => {
<template>
<form @submit.prevent="createList">
<label for="list_name">Add MovieList</label>
<div>
<div class="form-group">
<input v-model="listName"
name="list_name"
placeholder="MovieList Name"
@ -31,6 +31,13 @@ const createList = () => {
</form>
</template>
<style scoped>
form {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
button {
background-color: #4caf50;
color: white;
@ -46,4 +53,8 @@ input {
border-radius: 4px 0 0 4px;
}
label {
font-weight: bold;
}
</style>