17 lines
476 B
HTML
17 lines
476 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
<link
|
|
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body class="py-4 px-24">
|
|
<h1 class="font-bold text-2xl">Vue 3</h1>
|
|
<div id="app" class="mt-4 container mx-auto"></div>
|
|
</body>
|
|
</html>
|