25 lines
No EOL
743 B
HTML
25 lines
No EOL
743 B
HTML
<!DOCTYPE html>
|
|
<!--suppress JSUnresolvedFunction -->
|
|
<html lang="en">
|
|
<head>
|
|
<title>template-vue3-cdn</title>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="./assets/destyle.css">
|
|
<script defer type="module">
|
|
import { enableFullscreen } from './lib/system.js';
|
|
import app from './components/App.js';
|
|
|
|
(async () => {
|
|
await enableFullscreen();
|
|
app.mount('.app');
|
|
})();
|
|
</script>
|
|
<style>
|
|
body {
|
|
background-color: #2A3D52;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="app"></body>
|
|
</html> |