-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 897 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<title>Vite + Alpine</title>
</head>
<body>
<div id="app" x-data="app">
<a href="https://vitejs.dev" target="_blank">
<img :src="viteLogo" class="logo" alt="Vite logo" />
</a>
<a href="https://alpinejs.dev/" target="_blank">
<img :src="alpineLogo" class="logo alpine" alt="Alpine logo" />
</a>
<h1>Hello Vite + Alpine!</h1>
<div class="card">
<button id="counter" type="button" @click="count++" x-text="`count is ${count}`"></button>
</div>
<p class="read-the-docs">Click on the Vite and Alpine logos to learn more</p>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>