mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-11-10 07:28:24 +08:00
26 lines
689 B
HTML
26 lines
689 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<link rel="icon" href="/favicon.ico" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>TDesign Vue Next Starter</title>
|
||
</head>
|
||
<body>
|
||
<div id="app"></div>
|
||
<script type="module" src="/src/main.ts"></script>
|
||
<script language="javascript">
|
||
if (window.location.host === 'tdesign.tencent.com') {
|
||
const aegis = new Aegis({
|
||
id: 'rDISNMyXgqWDFPyHMB', // 项目ID,即上报key
|
||
reportAssetSpeed: true, // 静态资源测速
|
||
});
|
||
}
|
||
</script>
|
||
</body>
|
||
|
||
<script>
|
||
window.global = window;
|
||
</script>
|
||
</html>
|