Files
microapp-vue3-interview/index.html
2026-06-21 11:00:53 +08:00

18 lines
530 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>microapp-vue3 — 子应用</title>
</head>
<body>
<!--
注意:子应用挂载点不能用 #app否则会与主应用的 #app 冲突
使用独立命名的 id
-->
<div id="microapp-vue3-root"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>