updated readme

This commit is contained in:
Edward Tirado Jr 2026-04-16 18:06:28 -05:00
parent 242c894903
commit c4c10d6996
2 changed files with 9 additions and 8 deletions

View file

@ -1,7 +1,10 @@
# Nuxt Minimal Starter # Movie Night Web [WIP]
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
Setup is pretty standard for a Nuxt project so I'll leave that below. Just be sure to copy .env.example to .env and fill
in the value.
## Setup ## Setup
Make sure to install dependencies: Make sure to install dependencies:

View file

@ -58,10 +58,11 @@ const criticScores = computed(() => {
</div> </div>
</dl> </dl>
<ButtonAction v-if="canEdit" <ButtonAction
button-text="Remove From List" v-if="canEdit"
buttonColor="danger" button-text="Remove From List"
@action="emit('remove-movie', selectedMovie.id)" buttonColor="danger"
@action="emit('remove-movie', selectedMovie.id)"
/> />
</div> </div>
</template> </template>
@ -71,9 +72,6 @@ dt {
font-weight: bold; font-weight: bold;
} }
.critic-score-source {
}
.movie-detail { .movie-detail {
display: flex; display: flex;
flex-direction: column; flex-direction: column;