aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickrepeater/data/contextProperty.qml
blob: 44e76f474f41f4dd4744845bdd1fa7c5ea469fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.14

Item {
    Column {
        Repeater {
            model: ["apples", "oranges", "pears"]
            Text {
                id: txt
                text: modelData + index
            }
        }
    }
}