mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-13 09:59:36 +00:00
14 lines
278 B
JavaScript
14 lines
278 B
JavaScript
// Constructor
|
|
function Component()
|
|
{
|
|
generateTr();
|
|
}
|
|
|
|
function generateTr() {
|
|
console.log("generate tr start ")
|
|
|
|
component.setValue("DisplayName", qsTr("Installer"));
|
|
component.setValue("Description", qsTr("This package contains information of installer"));
|
|
}
|
|
|