12 lines
162 B
QML
12 lines
162 B
QML
|
import QtQuick 2.0
|
||
|
|
||
|
Item {
|
||
|
property bool success: false
|
||
|
|
||
|
BaseComponent {
|
||
|
id: foo
|
||
|
}
|
||
|
|
||
|
Component.onCompleted: success = (foo.bar == '100')
|
||
|
}
|