13 lines
178 B
QML
13 lines
178 B
QML
import QtQuick 2.5
|
|
import QtQuick.Window 2.2
|
|
import QtWebEngine 1.0
|
|
|
|
Window {
|
|
width: 800
|
|
height: 600
|
|
visible: true
|
|
|
|
WebEngineView {
|
|
anchors.fill: parent
|
|
}
|
|
}
|