19 lines
225 B
QML
19 lines
225 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import Qt.labs.qmlmodels
|
|
|
|
|
|
Item
|
|
{
|
|
StackView
|
|
{
|
|
id: employeesStack
|
|
anchors.fill: parent
|
|
initialItem: "EmployeesTable.qml"
|
|
}
|
|
}
|
|
|
|
|
|
|