aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmltypeloader/data/Load.qml
blob: 0b893bb5cd641972200b6ea09598e9eeb4f0f841 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

Item {
    property int xy: loader.xy
    Loader {
        id: loader
        asynchronous: true
        source: 'Base.qml'
        property int xy: item.xy
    }
}