mirror of
https://github.com/vitejs/vite.git
synced 2024-11-22 07:09:05 +00:00
26 lines
843 B
HTML
26 lines
843 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": "/vue@3.2.0.js",
|
|
"slash5": "/slash@5.js",
|
|
"slash3": "/slash@3.0.0.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>
|
|
<p>Imported slash5 exists: <span id="imported-slash5-exists"></span></p>
|
|
<p>Imported slash3 exists: <span id="imported-slash3-exists"></span></p>
|
|
<p>Required slash3 exists: <span id="required-slash3-exists"></span></p>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|