You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yudao/front-end/mall4v/index.html

33 lines
1.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<!-- 声明文档类型为HTML5 -->
<html>
<head>
<!-- 设置文档的字符编码为UTF-8确保正确显示各种语言的文字 -->
<meta charset="UTF-8" />
<!-- 指定页面图标favicon通常是一个小图标在浏览器标签上显示 -->
<link rel="icon" href="/favicon.ico" />
<!-- 指示IE使用最新的渲染引擎和Chrome Frame如果安装的话来呈现页面 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- 配置移动设备上的视口viewport以确保页面在不同尺寸的屏幕上正确缩放 -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- 引入一个空的script标签ID为qqMap可能是为了之后通过JavaScript动态加载腾讯地图API或其他相关代码 -->
<script id="qqMap" charset="utf-8"></script>
<!-- 指定页面使用的渲染器为Webkit这主要用于兼容某些旧版浏览器的行为 -->
<meta name="renderer" content="webkit">
<!-- 页面标题,这里留空,实际项目中应根据具体需求填写 -->
<title></title>
</head>
<body>
<!-- 定义一个div元素ID为app这是单页应用(SPA)中常见的挂载点用于Vue.js或React等框架的应用程序入口 -->
<div id="app"></div>
<!-- 引入主JavaScript文件使用type="module"表明这是一个ES6模块。该文件路径为/src/main.js表示应用程序逻辑的起点 -->
<script type="module" src="/src/main.js"></script>
</body>
</html>