mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
15 lines
360 B
HTML
15 lines
360 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 + Lit App</title>
|
|
<script type="module" src="/src/my-button.ts"></script>
|
|
</head>
|
|
<body>
|
|
<my-button name="World">
|
|
<p>This is child content</p>
|
|
</my-button>
|
|
</body>
|
|
</html>
|