ThinkAdmin/index.html
2022-01-15 18:19:50 +08:00

32 lines
991 B
HTML

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Layout Demo - 这是一个技术实践分支,仅用于测试使用</title>
<!-- 加载框架样式 -->
<link rel="stylesheet" href="static/plugs/core/vue.element.plus.css">
<!-- 这页面配色还可以
https://microsoftedgewelcome.microsoft.com/zh-cn/update/96?channel=stable&version=96.0.1054.29&form=MT002S
-->
<!-- 加载基础框架组件 -->
<script src="static/plugs/core/vue.min.js"></script>
<script src="static/plugs/core/vue.router.js"></script>
<script src="static/plugs/core/vue.sfc.loader.js"></script>
<script src="static/plugs/core/vue.element.plus.js"></script>
<script src="static/plugs/less/less.min.js"></script>
<!-- 加载基础框架模块 -->
<script type="module" src="static/app.js"></script>
</head>
<body>
<router-view></router-view>
</body>
</html>