We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26f5684 commit 43114dcCopy full SHA for 43114dc
src/collectionview/vue/component.ts
@@ -67,7 +67,13 @@ export default {
67
const name = (listView as any)._itemTemplateSelector(currentItem, index, items);
68
const context = this.getItemContext(currentItem, index);
69
const oldVnode = args.view && args.view[VUE_VIEW];
70
- args.view = this.$templates.patchTemplate(name, context, oldVnode);
+ if (args.view) {
71
+ args.view._batchUpdate(() => {
72
+ args.view = this.$templates.patchTemplate(name, context, oldVnode);
73
+ });
74
+ } else {
75
76
+ }
77
},
78
onItemLoadingInternal(args) {
79
this.updateViewTemplate(args);
0 commit comments