Marwerk / coyotiv-graduation-project

Website for Apart-Hotel "Las Calas"
MIT License
0 stars 0 forks source link

#CleanCode Frontend views #42

Closed Dr4gon closed 11 months ago

Dr4gon commented 1 year ago

@Marwerk First something, you could improve.

A small improvement is the readability on this error in the SignUpView.vue

 p.error(v-if='registrationError') {{ registrationError }}

My suggestions is

 p.error(v-if='registrationFails') {{ registrationFails }}

because error already tells the reader, it's an error. It's more fluent and less redundant to write it like a sentence.

Then the things I like:

Marwerk commented 11 months ago

Thanks for the feedback De Long!