mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2025-04-15 10:07:07 +08:00
21 lines
572 B
HTML
21 lines
572 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Vite App</title>
|
|
<!--preload-links-->
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
document.documentElement.style.fontSize =
|
|
document.documentElement.clientWidth / 23.4375 + 'px'
|
|
})
|
|
</script>
|
|
<!--app-context-->
|
|
</head>
|
|
<body>
|
|
<div id="app"><!--app-html--></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|