mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 11:56:17 +02:00
10 lines
167 B
QML
10 lines
167 B
QML
import QtQuick 2.3
|
|
import QtQuick.Controls 1.2
|
|
import QtWebKit 3.0
|
|
|
|
WebView {
|
|
id: root
|
|
objectName: "webview"
|
|
anchors.fill: parent
|
|
url: "about:blank"
|
|
}
|