Last active
March 22, 2020 02:02
-
-
Save softauthor/4caec76d3b897d1093a7848da6af88cd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="six wide column"> | |
| <form class="ui segment large form"> | |
| <div class="ui segment"> | |
| <div class="field"> | |
| <div class="ui right icon input large"> | |
| <input type="text" placeholder="Enter your address" v-model="coordinates" /> | |
| <i class="dot circle link icon" @click="locatorButtonPressed"></i> | |
| </div> | |
| </div> | |
| <div class="field"> | |
| <div class="two fields"> | |
| <div class="field"> | |
| <select v-model="type"> | |
| <option value="restaurant">Restaurant</option> | |
| </select> | |
| </div> | |
| <div class="field"> | |
| <select v-model="radius"> | |
| <option value="5">5 KM</option> | |
| <option value="10">10 KM</option> | |
| <option value="15">15 KM</option> | |
| <option value="20">20 KM</option> | |
| </select> | |
| </div> | |
| </div> | |
| </div> | |
| <button class="ui button" @click="findCloseBuyButtonPressed">Find CloseBuy</button> | |
| </div> | |
| </form> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment