lqml/examples/advanced-qml-auto-reload/qml/.template.qml
2022-03-09 18:28:37 +01:00

15 lines
254 B
QML

import QtQuick 2.15
Loader {
objectName: "~A"
source: "../" + objectName
Component.onCompleted: if (width === 0) { anchors.fill = parent }
function reload() {
var src = source
source = ""
Engine.clearCache()
source = src
}
}