qt6-bb10/qtdeclarative/tests/auto/qml/qqmllistreference/data/compositeListProp.qml

15 lines
261 B
QML

import QtQml
QtObject {
id: self
property list<AListItem> items: [ self ]
Component.onCompleted: {
items.push(self);
items.push(null);
items[2] = self;
items.splice(1, 0, self);
items.unshift(self);
}
}