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