According to the documentation here https://wiki.qt.io/Qt_for_WebAssembly, it says qtwebview isn't supported. But does it support WebEngineView?

I have this code here, it compiles well on desktop but when I try to run /Users/mac/Qt/5.15.0/wasm_32/bin/qmake .., I run into error Project ERROR: Unknown module(s) in QT: webengine

Here is the code


Qt Code:
  1. import QtQuick 2.15
  2. import QtQuick.Window 2.15
  3. import QtWebEngine 1.10
  4.  
  5.  
  6. Window {
  7. visible: true
  8. width: 640
  9. height: 480
  10. title: qsTr("Hello World")
  11.  
  12. WebEngineView{
  13.  
  14. url: "https://google.com"
  15. anchors.fill: parent
  16. }
  17. }
To copy to clipboard, switch view to plain text mode 


And in the .pro file

Qt Code:
  1. QT += quick qml webengine
To copy to clipboard, switch view to plain text mode