mirror of
https://github.com/vitejs/vite.git
synced 2024-11-22 07:09:05 +00:00
21 lines
584 B
HTML
21 lines
584 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>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"vue": "https://unpkg.com/vue@3.2.0/dist/vue.runtime.esm-browser.js"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>Imported Vue version: <span id="imported-vue-version"></span></p>
|
|
<p>Required Vue version: <span id="required-vue-version"></span></p>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|