new Vue({
data: {
lists: {}
},
render(h) {
return h('div', this.lists)
}
}).$mount()
如题所述,上述代码报错如下。
vue-2.0.0.js:2586 [Vue warn]: Avoid using observed data object as vnode data: {}
Always create fresh vnode data objects in each render! (found in root instance)