10000
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 46c69b6 commit a9032f6Copy full SHA for a9032f6
platform/nativescript/runtime/components/v-template.js
@@ -71,7 +71,7 @@ export class TemplateBag {
71
patchTemplate(name, context, oldVnode) {
72
const vnode = this._templateMap.get(name).scopedFn(context)
73
// in 2.6 scopedFn returns an array!
74
- if (vnode) {
+ if (Array.isArray(vnode)) {
75
vnode = vnode[0]
76
}
77
const nativeView = patch(oldVnode, vnode).nativeView
0 commit comments