48 lines
895 B
HTML
48 lines
895 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Storage Editor</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
|
|
background: #f5f5f5;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
#root {
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"main": "./js/main.js",
|
|
"lit-html": "https://esm.xiongxiao.me/lit-html",
|
|
"lit": "https://esm.xiongxiao.me/lit",
|
|
"storage-store": "./lib/storage-store.js"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="root">
|
|
</div>
|
|
|
|
<script type="module">
|
|
import { render } from 'main';
|
|
render();
|
|
</script>
|
|
</body>
|
|
|
|
</html> |