forked from iod/cpnode-front
20 lines
540 B
HTML
20 lines
540 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>fes.js</title>
|
|
<link rel="shortcut icon" type="image/x-icon" href="./logo.png" />
|
|
<!-- 引入样式 -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://unpkg.com/element-ui/lib/theme-chalk/index.css"
|
|
/>
|
|
<!-- 引入组件库 -->
|
|
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
</html>
|