Formularios Flashcards

1
Q

v-model

A

Puede usar la v-model directiva para crear enlaces de datos bidireccionales en la entrada de formulario, área de texto y elementos seleccionados.
Escribis en el input y se modifica en el parrafo.

<div>
<p>{{nombre}}</p>
</div>

data() {
    return {
      nombre: ''
    }
  },
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Trim

A

v-model.trim=”tarea.nombre”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Submit

A

@submit.prevent=”procesarFormulario”

methods: {
  procesarFormulario(){
    console.log(this.tarea)
  }
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly