11 lines
236 B
QML
11 lines
236 B
QML
|
import QtQml 2.15
|
||
|
|
||
|
QtObject {
|
||
|
id: root
|
||
|
Component.onCompleted: {
|
||
|
let comp = Qt.createComponent("dynamic.qml");
|
||
|
let inst = comp.createObject(root, { testObj: new Set(), });
|
||
|
objectName = inst.use();
|
||
|
}
|
||
|
}
|