summaryrefslogtreecommitdiff
path: root/tests/auto/qml/codemodel/check/inline-components.qml
blob: b613f2ae8cf016a25c60c779d5ddd907713bc721 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// LabeledImageBox.qml
import QtQuick 2.15
import "./InlineComponent.qml"

Rectangle {
    property alias caption: image.caption
    property alias source: image.source
    border.width: 2
    border.color: "black"
    InlineComponent.LabeledImage {
        id: image
    }
}