Hello World

Source
A minimal Nuxt application only requires the `app.vue` and `nuxt.config.js` files.
app.vue
Open docs
<script setup lang="ts">
const version = 3 + 1
</script>

<template>
  <div class="hello">
    Hello Nuxt {{ version }}!
  </div>
</template>

<style scoped>
.hello {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  padding: 2rem;
}
</style>
https://hello-world.example.nuxt.space
Read more in Docs > Getting Started > Introduction.