mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-14 18:39:35 +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"));
|
||
|
}
|
||
|
|