mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
15 lines
252 B
QML
15 lines
252 B
QML
import QtQuick
|
|
|
|
Loader {
|
|
objectName: "ext/Page1.qml"
|
|
source: objectName
|
|
|
|
Component.onCompleted: if (width === 0) { anchors.fill = parent }
|
|
|
|
function reload() {
|
|
var src = source
|
|
source = ""
|
|
Engine.clearCache()
|
|
source = src
|
|
}
|
|
}
|