FluentUI/example/qml/page/T_RemoteLoader.qml

16 lines
358 B
QML
Raw Normal View History

2023-08-24 15:50:37 +08:00
import QtQuick 2.15
import QtQuick.Layouts 1.15
import QtQuick.Window 2.15
import QtQuick.Controls 2.15
import FluentUI 1.0
2023-06-12 16:46:02 +08:00
import "qrc:///example/qml/component"
2023-08-26 17:20:30 +08:00
import "../component"
2023-06-12 16:46:02 +08:00
2023-06-30 22:55:03 +08:00
FluPage{
2023-07-18 18:24:06 +08:00
launchMode: FluPageType.SingleTop
2023-06-30 22:55:03 +08:00
FluRemoteLoader{
anchors.fill: parent
2023-08-30 17:18:49 +08:00
source: "https://zhu-zichu.gitee.io/Qt5_T_RemoteLoader.qml"
2023-06-30 22:55:03 +08:00
}
2023-06-12 16:46:02 +08:00
}