16 lines
246 B
QML
16 lines
246 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
ColumnLayout
|
|
{
|
|
Item
|
|
{
|
|
Component.onCompleted:
|
|
{
|
|
appLoader.source = "firststart.qml"
|
|
appLoader.window.title = "pyqcrm"
|
|
}
|
|
}
|
|
}
|