Merge pull request #23 from reefqi037/add-enter-key-function
Add send request on Enter Key press. Co-authored-by: rifqi <rifqi.alabqary@gmail.com>
This commit is contained in:
commit
8f03f709fb
1 changed files with 2 additions and 2 deletions
|
|
@ -91,11 +91,11 @@
|
|||
</li>
|
||||
<li>
|
||||
<label for="url">URL</label>
|
||||
<input type="url" v-bind:class="{ error: urlNotValid }" v-model="url">
|
||||
<input type="url" v-bind:class="{ error: urlNotValid }" v-model="url" v-on:keyup.enter="sendRequest">
|
||||
</li>
|
||||
<li>
|
||||
<label for="path">Path</label>
|
||||
<input v-model="path">
|
||||
<input v-model="path" v-on:keyup.enter="sendRequest">
|
||||
</li>
|
||||
<li>
|
||||
<label for="action"> </label>
|
||||
|
|
|
|||
Loading…
Reference in a new issue