aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/imports/merged-named-imports.qml
blob: 9a89468fcd8ecf63dd86078c3367ca8d5041251c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [imports]
import QtQuick as Project
import QtMultimedia as Project

Project.Rectangle {
    width: 100; height: 50

    Project.Audio {
        source: "music.wav"
        autoPlay: true
    }
}
//! [imports]