14 lines
302 B
QML
14 lines
302 B
QML
|
import QtQuick 2.14
|
||
|
|
||
|
Loader {
|
||
|
sourceComponent: hotComponent.component
|
||
|
|
||
|
property alias source: hotComponent.source
|
||
|
property alias rethrowErrors: hotComponent.rethrowErrors
|
||
|
readonly property alias errors: hotComponent.errors
|
||
|
|
||
|
HotComponentFromSource {
|
||
|
id: hotComponent
|
||
|
}
|
||
|
}
|