Update index.html
Added send request on Enter Key press.
This commit is contained in:
parent
133fdf03db
commit
6616f835af
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