Skip to content
This repository was archived by the owner on May 1, 2025. It is now read-only.

Commit d919ed8

Browse files
authored
feat: content/2.concepts/2.app-vue (#32)
1 parent 5ea7ce2 commit d919ed8

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

content/2.concepts/2.app-vue/index.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@
22
ogImage: true
33
---
44

5-
# Application Entry
5+
# アプリケーションのエントリ
66

7-
To give you the full control of your application, Nuxt allows you to define your own application entry `app.vue` to start minimal (optional).
7+
Nuxt では `app.vue` がアプリケーションのエントリーポイントとなっています。\
8+
アプリケーションを制御するために最小限の `app.vue` を定義して、自分自身のアプリケーションの実装を始めることができます。(任意)\
9+
この例ではメッセージを画面に出力するだけの単純な実装が行われています。
810

9-
// TODO:
11+
次のチャプターで説明する `pages/` ディレクトリはオプショナルで、存在しない場合は vue-router の依存関係を含めません。\
12+
これは、ルーティングが必要ないランディングページやアプリケーションを実装する際に便利です。
1013

11-
To get more capabilities of your Nuxt app, let's continue with the [Routing](/concepts/routing) section to learn how we can make our app multi-page.
14+
また、`nuxt.config.ts` を通じてアプリケーションの設定を行うことができます。(`nuxt.config.js`, `nuxt.config.mjs` も同様にサポートしています。)\
15+
デフォルトでは、ほとんどのユースケースをカバーするように構成されており、必要に応じて設定を上書きすることができます。
16+
詳細なオプションに関しては [Nuxt 公式ドキュメント](https://nuxt.com/docs/getting-started/configuration) をご覧ください。
17+
18+
Nuxt アプリの機能をさらに拡張するには、[Routing](/concepts/routing) セクションに進んで、アプリをマルチページにする方法を学びましょう。

0 commit comments

Comments
 (0)