aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlcomponent/data/jsmodule/module.mjs
blob: 3dd3507d455e6f1e814fbe20a4332f7cd53c4575 (plain)
1
2
3
4
5
6
export function withProp(root) {
  const component = Qt.createComponent("data/jsmodule/Dynamic.qml");
  const el = component.createObject(root, { value: 42 });
  return el.value;
}