9 lines
145 B
QML
9 lines
145 B
QML
|
import QtQml
|
||
|
|
||
|
QtObject {
|
||
|
function a() { b() }
|
||
|
function b() { c() }
|
||
|
function c() { console.trace() }
|
||
|
Component.onCompleted: a()
|
||
|
}
|