你好,世界

源码
一个最简的 Nuxt 应用只需要 `app.vue` 和 `nuxt.config.js` 文件。
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
Docs > Getting Started > Introduction 中查看详情