-
-
Notifications
You must be signed in to change notification settings - Fork 33.8k
Closed
Labels
Description
Hi, i came across something weird after upgrading to the latest 1.0.25 release. I tried everything but i wasn't able to reproduce it on jsfiddle. Sorry 😢
My problem: v-model with select element. For some reason my app gets stuck in a loop when i paginate into a page that has a select tag with v-model
<select v-model="foo">
<option v-for="group in groups.data" :value="group.id">{{ group.id }}<option>
</select>
So i snooped around the vue source and found out that my problem lies on line 55 to 57 of the "handle v-model select initial value edge cases in IE (fix #2983)" commit.
Link: aab74bd
If i comment out line 56 ["return nextTick(this.forceUpdate)"] of the commit, everything works smoothly.
I am using vueify, vue-router and vue-resource.
Vue.js version
1.0.25
Reproduction Link
Wasn't able to re-produce it
repsac-by, gurghet, vvenv, Sreilys, kenberkeley and 1 moregurghet, repsac-by and andripgbyk