I can successfully log properties of Qt objects in javascript:
Keys.onPressed: {
console.log(event.key)
}
But is it possible to log an objects and get see all of its members in one log?
With JavaScript objects in the Chrome dev tools I can do this:
var myObj = {a:1, b:2, c:3}
console.log(myObj) // {a: 1, b: 2, c: 3}
Can I do something similar with the event object in Qt QML?