mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
aeccfdf8cd
fix: fix logo not showing in development play
19 lines
435 B
HTML
19 lines
435 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link
|
|
rel="icon"
|
|
href="https://element-plus.org/images/element-plus-logo-small.svg"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Element Plus App</title>
|
|
<!-- element css cdn -->
|
|
</head>
|
|
|
|
<body>
|
|
<div id="play"></div>
|
|
<script type="module" src="/main.ts"></script>
|
|
</body>
|
|
</html>
|