aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/qml-documents/A.qml
blob: 924bea96395cd4d66cc79d381e3f330ae442824a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
//! [document]
// A.qml
import QtQuick 2.15

Item {
    id: root
    property string message: "From A"
    component MyInlineComponent : Item {
        Component.onCompleted: console.log(root.message)
    }
}
//! [document]