1 2 3 4 5 6 7 8 9
import QtQml 2.0 QtObject { id: root property int foo: 42 property bool success: false Component.onCompleted: { success = true; // break here } }