HTML Select Tag Bind to Model

Nick Kurz:
Can anyone tell me how to use an HTML Select Tag to modify the $$BF_Model? This is what I have at the moment…

<div
v-if="row.foundationSelect"
    >
<label for="foundationType"></label>

<select name="foundationType" id="model.foundationType">
    <option value="none">None</option>
  <option value="preCast">Pre-Cast Concrete</option>
  <option value="granite">Granite</option>
  <option value="slabpiers">Slab W/Piers</option>
  <option value="sand">Sand</option>
</select>
</div>

Andrew Dam:
Give your the key v-model that points to where you want to save the selection.

<select name="foundationType" id="model.foundationType" v-model="model.selection">

Nick Kurz:
Nice!!! Thanks