Skip to content

Commit c5d2ed6

Browse files
committed
docs: translate guide > installation
1 parent 64ae7c2 commit c5d2ed6

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/guide/installation.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# インストール
22

3-
Vue.js is built by design to be incrementally adoptable. This means that it can be integrated into a project multiple ways depending on the requirements.
3+
Vue.js は、段階的に導入できるように設計されています。これは要件に応じて、複数の方法でプロジェクトに組み込むことができることを意味します。
44

5-
There are four primary ways of adding Vue.js to a project:
5+
Vue.js をプロジェクトに追加するには主に4つの方法があります:
66

7-
1. Import it as a [CDN package](#cdn) on the page
8-
2. Download the JavaScript files and [host them yourself](#download-and-self-host)
9-
3. Install it using [npm](#npm)
10-
4. Use the official [CLI](#cli) to scaffold a project, which provides batteries-included build setups for a modern frontend workflow (e.g., hot-reload, lint-on-save, and much more)
7+
1. ページ上で [CDN パッケージ](#cdn) として取り込む
8+
2. JavaScript ファイルをダウンロードして、 [自分でホストする](#download-and-self-host)
9+
3. [npm](#npm) を使ってインストールする
10+
4. 公式の [CLI](#cli) を使ってプロジェクトの基礎を作る。これはモダンなフロントエンドのワークフローのためのバッテリー同梱のようなビルドセットアップを提供します (例えば、ホットリロード、保存時に Lint など)
1111

1212
## リリースノート
1313

@@ -17,7 +17,7 @@ There are four primary ways of adding Vue.js to a project:
1717

1818
## Vue Devtools
1919

20-
> Currently in Beta - Vuex and Router integration is still WIP
20+
> 現在ベータ版 - Vuex Router の統合は WIP です
2121
2222
Vue を使用する場合は、ブラウザに [Vue Devtools](https://github.com/vuejs/vue-devtools#vue-devtools) をインストールすることをお勧めします。これにより、Vue アプリケーションをよりユーザーフレンドリーなインターフェースで調査、デバッグすることが可能になります。
2323

@@ -39,9 +39,9 @@ Vue を使用する場合は、ブラウザに [Vue Devtools](https://github.com
3939

4040
## Download and Self Host
4141

42-
If you want to avoid using build tools but can't use a CDN in production then you can download the relevant `.js` file and host it using your own web server. You can then include it using a `<script>` tag, just like with the CDN approach.
42+
ビルドツールの使用を避けたいが、本番環境で CDN を使用できない場合は、関連する `.js` ファイルをダウンロードして、自分のウェブサーバを使ってホストすることができます。CDN の場合と同じように `<script>` タグを使って導入することができます。
4343

44-
The files can be browsed and downloaded from a CDN such as [unpkg](https://unpkg.com/browse/vue@next/dist/) or [jsDelivr](https://cdn.jsdelivr.net/npm/vue@next/dist/). The various different files are [explained later](#explanation-of-different-builds) but you would typically want to download both a development build and a production build.
44+
ファイルは [unpkg](https://unpkg.com/browse/vue@next/dist/) [jsDelivr](https://cdn.jsdelivr.net/npm/vue@next/dist/) などの CDN から閲覧、ダウンロードすることができます。様々な異なるファイルは [後で説明しますが](#explanation-of-different-builds) 、通常は開発用のビルドと本番用のビルドの両方をダウンロードすることになります。
4545

4646
## npm
4747

@@ -98,10 +98,10 @@ $ yarn
9898
$ yarn dev
9999
```
100100

101-
It might occur, that when your username has a space in it like 'Mike Baker', Vite cannot succeed. Have a try with
101+
ユーザ名に「Mike Baker」のように空白が入っていると、 Vite が成功しないことがあります。次を試してみてください。
102102

103103
```bash
104-
$ create-vite-app <project-name>
104+
$ create-vite-app <プロジェクト名>
105105
```
106106

107107
## さまざまなビルドについて

0 commit comments

Comments
 (0)