This was working prior to v2.5.14. A temporary fix we've implemented is changing type="checkbox" to :type="'checkbox'", or setting v-bind="$attrs" to a computed property that returns an object with Object.assign({ type: 'checkbox'}, this.$attrs); Removing the v-model from the ...
Vue.component('component-proxy',{props:{name:{type:String,required:true},props:{type:Object,default:()=>{}}},render(createElem){returncreateElem(this.name,{attrs:this.props});}}); complete working example:http://jsbin.com/fifatod/5/edit?html,js,output ...