FluentUI/example/qml/page/T_RemoteLoader.qml

15 lines
321 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-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
2024-03-29 16:56:09 +08:00
source: "https://zhu-zichu.gitee.io/Qt_174_RemoteLoader.qml"
2023-06-30 22:55:03 +08:00
}
2023-06-12 16:46:02 +08:00
}