I have trouble migrating following code to `Vue 1.0`. I use `1.0.0-alpha.6` as a migration path. ``` html <label v-repeat="param in params"> {{$key}} : <partial :name="'editor-'+param.type"></partial> </label> ``` Vue setup ``` javascript new Vue({ el: 'body', data: { params: { paramA : { type: 'number', value: 42 } }, }, partials: { 'editor-number': '<input v-model="param.value" type="number">' } }) ``` as the [`v-for` version](http://jsfiddle.net/jj3rgvh3/) throws warnings and an error i believe this to be a bug