2023-05-08 12:57:34 +00:00
|
|
|
pragma Strict
|
|
|
|
import QtQuick
|
|
|
|
import TestTypes
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Component.onCompleted: () => {
|
|
|
|
repeater.model = EntrySource.getEntries()
|
|
|
|
}
|
|
|
|
|
|
|
|
Repeater {
|
|
|
|
id: repeater
|
|
|
|
Item {
|
|
|
|
required property int index
|
|
|
|
required property QtObject modelData
|
2023-05-08 12:59:27 +00:00
|
|
|
objectName: modelData + ": " + index
|
2023-05-08 12:57:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
property int c: children.length
|
|
|
|
}
|