8000
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 38c468d commit 748d39aCopy full SHA for 748d39a
platform/nativescript/runtime/components/list-view.js
@@ -50,6 +50,10 @@ export default {
50
},
51
52
mounted() {
53
+ if (!this.$templates) {
54
+ return;
55
+ }
56
+
57
this.$refs.listView.setAttribute(
58
'_itemTemplatesInternal',
59
this.$templates.getKeyedTemplates()
@@ -64,6 +68,10 @@ export default {
64
68
this.$emit('itemTap', extend({ item: this.items[args.index] }, args))
65
69
66
70
onItemLoading(args) {
71
72
73
74
67
75
const index = args.index
76
const items = args.object.items
77
0 commit comments