19 lines
409 B
QML
19 lines
409 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import FluentUI.Controls
|
|
import FluentUI.impl
|
|
import Gallery
|
|
|
|
StackPage {
|
|
router: PageRouter{
|
|
routes: {
|
|
"/": {url: R.resolvedUrl("res/qml/page/T_Material.qml"),singleton:true},
|
|
"/subpage": R.resolvedUrl("res/qml/page/T_SubPage.qml"),
|
|
}
|
|
}
|
|
Component.onCompleted: {
|
|
router.go("/")
|
|
}
|
|
}
|