25 lines
657 B
HTML
25 lines
657 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Tauri + Yew App</title>
|
|
<link data-trunk rel="css" href="styles.css" />
|
|
<link data-trunk rel="copy-dir" href="public" />
|
|
</head>
|
|
<body>
|
|
<script>
|
|
// access the pre-bundled global API functions
|
|
const { invoke } = window.__TAURI__.tauri
|
|
|
|
// now we can call our Command!
|
|
// You will see "Welcome from Tauri" replaced
|
|
// by "Hello, World!"!
|
|
invoke('init_config', { name: 'World' })
|
|
// `invoke` returns a Promise
|
|
.then((response) => {
|
|
window.header.innerHTML = response
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|