EnvEditorWebview/src/main.cpp
2025-05-10 17:22:30 +08:00

9 lines
171 B
C++

#include <webview/backends.hh>
#include <webview/webview.h>
int main(){
webview::webview wv(false,nullptr);
wv.navigate("https://www.baidu.com");
wv.run();
}