From Vue 2 to Vue 3: The new v-model
As you probably know, v-model allows us to very quickly and easily capture an input’s value into the state of our application. Every time the user types or interacts with an input, v-model will let the parent know so that it can update our state. In ...