Если я пытаюсь создать условия в моем v-шаблоне, например if="transaction.id == 604"
, я получаю следующую ошибку:
>System.err: Calling js method getView failed
System.err:
System.err: TypeError: Cannot read property 'scopedFn' of undefined
Если я установлю его на if="transaction.id"
, он будет работать нормально. Transaction.id существует и имеет значение 604.
<ListView for="transaction in transactions" itemTap="onItemTap" height="80%" >
<v-template if="transaction.id">
<StackLayout>
<Label :text="transaction.id" className="placeName" />
<Label :text="transaction.amounttxt" className="placeName" />
<Label :text="transaction.insight_text" className="placeName" />
</StackLayout>
</v-template>
</ListView>