Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork245
Description
Version
1.3.1
Reproduction link
https://play.nativescript.org/?template=play-vue&id=3SaUXi&v=3
Platform and OS info
Nativescript from vue-cli-template, Ios in emulator.
Steps to reproduce
HI,
Inside a ListView, I have a another component which contains a Label.
<Label :text="user.name"class="list-group-item-heading" :textWrap="false"style="height: 100%"/>
It works perfectly on android but not on ios.
on Ios the label is empty.
BUT if Iconvert the name to a string (which is already) directly in the template, it works!
<Label :text="String(user.name)"/><Label :text="user.name + ''"/>
If I do the same in a computed property it doesn't work, it has to be in the template.
I precise that in the chrome debugger I can see that the xml is ok, the name appear well in sources, but not in the application.
What is expected?
Label should not be empty on ios
What is actually happening?
Label is empty on ios
I'm not sure that the reproduction link actually reproduce the problem as I don't have an iPhone to test it, the problem occur in the emulator.