mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 19:58:13 +08:00
15 lines
217 B
QML
15 lines
217 B
QML
|
import QtQuick
|
||
|
|
||
|
Item {
|
||
|
id: root
|
||
|
anchors.fill: parent
|
||
|
property var extra_data: ({})
|
||
|
signal finish()
|
||
|
|
||
|
// TODO: complete this ......
|
||
|
Text {
|
||
|
anchors.fill: parent
|
||
|
text: JSON.stringify(extra_data)
|
||
|
}
|
||
|
}
|