我正在尝试使用 jQuery geocomplete 和 Vue.js 来使用地理数据填充表单。
我的代码包含这种形式:
<form>
<label for="get-offer-location">location: </label><input id="get-offer-location" v-model="newoffer.location" type="text"/>
<div style="visibility:hidden">
<input name="lat" type="text" value=""/>
<input name="lng" type="text" value=""/>
</div>
</form>
在我从 get-offer-location 输入中单击建议的位置后,该字段似乎已填写 - 但是当我开始输入另一个字段时,位置输入字段恢复为我输入的字母位置搜索。点击“post”,然后点击“news”或“offers”试试看: https ://jsfiddle.net/dvdgdnjsph/157w6tk8/
谁能告诉我怎么了?