I figured out a good base to start with.
Inside of the main QML, start with:
import QtQuick
import QtQuick.Window
import QtWebEngine
Window {
width: 1024
height: 750
visible: true
WebEngineView {
anchors.fill: parent
url: "https://www.qt.io"
}
}
Found here:
https://doc.qt.io/qt-6/qtwebengine-webenginequick-minimal-example.html