index.vue
1<template>
2 <main class="page">
3 <h1 class="hero-title">Nuxt + Vite 7 Fixture</h1>
4 <p class="hero-hook">Vue 3 SFC under Nuxt's dev server.</p>
5 </main>
6</template>
7
8<style scoped>
9.page { padding: 2rem; font-family: system-ui, sans-serif; }
10.hero-title { font-size: 2rem; margin: 0 0 0.5rem; }
11.hero-hook { color: #555; }
12</style>