aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeqt/data/createComponent_lib.qml
blob: a52453e8fa867453b96c666c6a0ebcd5a00873e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0
import "createComponent_lib.js" as Test

Item {
    property int status: Component.Null
    property int readValue: 0

    Component.onCompleted: {
        status = Test.loadComponent()
        readValue = Test.createComponent().test;
    }
}