Files
qt6-qml-for-beginners/Qt6QMLBeginnersCode/6.Javascript/4-JsDirectImpoart/Main.qml
2025-09-28 17:05:51 +08:00

34 lines
624 B
QML

// Copyright (c) Daniel Gakwaya.
// SPDX-License-Identifier: MIT
import QtQuick
import "utilities1.js" as Utilities1
Window {
visible: true
width: 640
height: 480
title: qsTr("Javascript Direct Import")
Rectangle {
width: 300
height: 100
color: "yellowgreen"
anchors.centerIn: parent
Text {
text: "Click Me"
anchors.centerIn: parent
}
MouseArea {
anchors.fill: parent
onClicked: {
//console.log("Hello there")
Utilities1.greeting()
}
}
}
}