12 lines
198 B
QML
12 lines
198 B
QML
|
|
import QtQuick
|
||
|
|
import QtQuick.Controls
|
||
|
|
Item
|
||
|
|
{
|
||
|
|
id: self
|
||
|
|
Component.onCompleted:{
|
||
|
|
appendItem(self)
|
||
|
|
}
|
||
|
|
property var title: ""
|
||
|
|
property var key: ""
|
||
|
|
property var value: ""
|
||
|
|
}
|