forked from qt-creator/qt-creator
10 lines
225 B
QML
10 lines
225 B
QML
|
|
import QtQuick 2.15
|
||
|
|
import QtQuick.Controls 2.15
|
||
|
|
|
||
|
|
Item {
|
||
|
|
property string otherString: ""
|
||
|
|
property string aProp: otherString ?? "N/A"
|
||
|
|
property string bProp: otherString?.trim()
|
||
|
|
property int unrelatedProp: 10
|
||
|
|
}
|