16 lines
478 B
HTML
16 lines
478 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<link rel="icon" type="image/svg+xml" href="/wails.png" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
||
|
|
<link rel="stylesheet" href="/style.css" />
|
||
|
|
<title>Wails + Vue + TS</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="bg" aria-hidden="true"></div>
|
||
|
|
<div id="app"></div>
|
||
|
|
<script type="module" src="/src/main.ts"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|