aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlbinding/data/bindToQMLComponent.qml
blob: 471db9023bd7962a107d61a223021595b362c8be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Item {
    id: root
    property MyComponent myProperty
    Binding {
        target: root
        property: "myProperty"
        value: myObject
    }
    MyComponent { id: myObject }
}