26 lines
1003 B
HTML
26 lines
1003 B
HTML
<!DOCTYPE html>
|
|
<html lang="">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<!-- vue3最新版本 -->
|
|
<script src="https://unpkg.com/vue@next"></script>
|
|
<!-- 引入Element Plus UI 组件库 -->
|
|
<link rel="stylesheet" href="//unpkg.com/element-plus/dist/index.css" />
|
|
<script src="//unpkg.com/element-plus"></script>
|
|
<!-- 语言包 -->
|
|
<script src="https://unpkg.com/browse/element-plus@1.2.0-beta.4/es/locale/lang/zh-cn.mjs"></script>
|
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
</noscript>
|
|
<div id="app"></div>
|
|
<!-- built files will be auto injected -->
|
|
|
|
</body>
|
|
</html>
|