vue-learning/入门/cli/hello-cli/public/index.html

41 lines
1.3 KiB
HTML
Raw Normal View History

2022-11-29 06:29:26 +00:00
<!--
* @Author: Kane
* @Date: 2022-11-22 17:50:49
* @LastEditors: Kane
2022-11-29 07:29:41 +00:00
* @LastEditTime: 2022-11-29 15:28:38
2022-11-29 06:29:26 +00:00
* @FilePath: \hello-cli\public\index.html
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
2022-11-22 09:57:20 +00:00
<!DOCTYPE html>
2022-11-29 06:29:26 +00:00
<html lang="zh-cn">
<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" />
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<title><%= htmlWebpackPlugin.options.title %></title>
<link rel="stylesheet" href="<%= BASE_URL %>css/root.css" />
<link rel="stylesheet" href="<%= BASE_URL %>css/normalize.css" />
<link rel="stylesheet" href="<%= BASE_URL %>css/app.css" />
</head>
2022-11-29 07:29:41 +00:00
<style>
.v-cloak {
display: none;
}
</style>
2022-11-29 06:29:26 +00:00
<body>
<noscript>
<strong
>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't
work properly without JavaScript enabled. Please enable it to
continue.</strong
>
</noscript>
2022-11-29 07:29:41 +00:00
<div id="app" class="v-cloak"></div>
2022-11-29 06:29:26 +00:00
<!-- built files will be auto injected -->
</body>
2022-11-22 09:57:20 +00:00
</html>
2022-11-29 06:29:26 +00:00