Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.4.1
-
0f23346d2a660404d40d02a2d101eb4fc21c8b02
Description
Using date object like in
import QtQuick Window { id: root width: 640 height: 480 visible: true title: "Foo" property date time: new Date() Component.onCompleted: console.log(time) }
compiles to
Error: main.qml:10:24: Could not compile binding for time: Cannot generate efficient code for Construct property date time: new Date() ^^^^
. I guess that's no binding in this case, just an object assignment.