mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
8 lines
158 B
QML
8 lines
158 B
QML
import QtQuick 2.9
|
|
|
|
QtObject {
|
|
id: object
|
|
default property alias children: object.__children
|
|
|
|
property list<QtObject> __children: [QtObject {}]
|
|
}
|