Last active
January 28, 2020 23:21
-
-
Save softauthor/5caa2122940ec77e252877cac872a582 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