Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save adderly/4b5b9f43e1fa2c8e618b to your computer and use it in GitHub Desktop.
Save adderly/4b5b9f43e1fa2c8e618b to your computer and use it in GitHub Desktop.
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