7 lines
108 B
QML
7 lines
108 B
QML
|
import QtQml
|
||
|
|
||
|
QtObject {
|
||
|
property var testObj
|
||
|
function use() { return testObj.has(1) ? 25 : 26; }
|
||
|
}
|