mirror of
https://github.com/VickScarlet/lifeRestart.git
synced 2025-07-16 09:03:55 +08:00
21 lines
758 B
HTML
21 lines
758 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
|
<script>window.json = async fileName=>(await axios(`../data/${fileName}.json`)).data;</script>
|
|
<title>Document</title>
|
|
</head>
|
|
<body style="margin: 0; height: 100%"></body>
|
|
<script type="module">
|
|
import App from '../src/app.js';
|
|
const app = new App();
|
|
app
|
|
.initial()
|
|
.then(()=>app.main());
|
|
</script>
|
|
</html> |