10 lines
167 B
QML
10 lines
167 B
QML
|
import QtQml
|
||
|
|
||
|
QtObject {
|
||
|
Component.onCompleted: {
|
||
|
let f = console.error;
|
||
|
const data = [f, ["That is great!"]]
|
||
|
data[0](...data[1]);
|
||
|
}
|
||
|
}
|