Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tygerbytes
Created December 11, 2018 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tygerbytes/a4539b6264e6d829b0d10000a4fa2df0 to your computer and use it in GitHub Desktop.
Save tygerbytes/a4539b6264e6d829b0d10000a4fa2df0 to your computer and use it in GitHub Desktop.
<div class="form-group">
<label for="run_type">Today, I plan on running:</label>
<div class="input-group">
<select name="run_type"
@change="changeRunType()"
class="form-control"
v-model="runTypeOption">
<option v-for="run in lib.runTypes"
v-bind:value="run.code"
v-bind:key="run.Code">
{{ run.name }}
</option>
</select>
</div>
<div class="text-muted">{{ this.runType.description }}</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment