qt6-bb10/qtdeclarative/tests/auto/qml/qqmlbinding/data/readonlyProperty.qml

14 lines
173 B
QML

import QtQuick 2.0
Item {
id: root
readonly property string name: "John"
Binding {
target: root
property: "name"
value: "Doe"
}
}