31 lines
665 B
HTML
31 lines
665 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||
|
|
<link rel="stylesheet" href="./reset.css">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>规划师管理系统</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="app"></div>
|
||
|
|
<script type="module" src="/src/main.js"></script>
|
||
|
|
</body>
|
||
|
|
<style>
|
||
|
|
/* @import "src/style/reset.less"; */
|
||
|
|
*{
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
body,html{
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
#app{
|
||
|
|
padding: 0;
|
||
|
|
height: 100vh;
|
||
|
|
width: 100vw;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</html>
|