“Wprowadź klucz Vue” Kod odpowiedzi

Wprowadź klucz Vue

<!-- only call `vm.submit()` when the `key` is `Enter` -->
<input v-on:keyup.enter="submit()">
<input @keyup.enter="submit()">
vue
MM.Mirzaei.Dev

Vuejs V-model po naciśnięciu

<input type="text" v-on:keyup.enter="submit" />
<p> {{ outputValueOnEnter }} </p>

//In data() :
outputValueOnEnter = ''

// In methods: 
submit(e) {
 this.outputValueOnEnter = e.target.value
 e.target.value = ''
}
  
Lioruby

Słuchaj Enter i Alt Key Vue

<!-- Alt + C -->
<input v-on:keyup.alt.67="clear">

<!-- Ctrl + Click -->
<div v-on:click.ctrl="doSomething">Do something</div>
Super Skunk

Odpowiedzi podobne do “Wprowadź klucz Vue”

Pytania podobne do “Wprowadź klucz Vue”

Więcej pokrewnych odpowiedzi na “Wprowadź klucz Vue” w HTML

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu