Created
August 7, 2014 19:40
-
-
Save jturcotte/2513ec864545ea645057 to your computer and use it in GitHub Desktop.
Death to Loader { }!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Component { | |
id: reusableComponent | |
Item { | |
property string value: "Hello" | |
} | |
} | |
property Item itemA: reusableComponent.createObject(this) | |
property Item itemB: reusableComponent.createObject(this) | |
Text { | |
text: itemA.value + itemB.value | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment