aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/requiredPropertyInComponent.qml
blob: 24ecf9d70678affef95d4141f09302220ca96132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import QtQuick 2.0

Row {
    // explicit component
    Component {
        id: foo
        Item {
            required property int i
        }
    }

    // implicit component, plain property
    property Component com: Item {}

    Repeater {
        model: 3
        // implicit component, default property
        Text {
            required property int index
            height: 40
            color: "black"
            text: "I'm item " + index
        }
    }
}