We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
def test_function(arg1): print(arg1) app.bind(test_function)
app.bind("test_function", []() -> void { std::cout << "Hello world!" << std::endl; });
function test_call() { webview.invoke('test_function', 1); }