blob: d9164f721500d6e34b9f7e2ccc3293c5d73572ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import QtQml
import TestTypes as PC
QtObject {
Component.onCompleted: {
const theList = PC.ListSingleton.get()
if (theList) {
for (let entry of theList) {
console.log(entry)
}
}
}
}
|