Skip to content

Commit 71561cd

Browse files
authored
Merge pull request #461 from naokie/lang-ja
2 parents 0a8003b + 4831d4d commit 71561cd

File tree

5 files changed

+6
-12
lines changed

5 files changed

+6
-12
lines changed

src/.vuepress/components/community/team/members.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ const members = [
248248
{
249249
name: 'Natalia Tepluhina',
250250
title: 'Fox Tech Guru',
251-
city: 'Kyiv, Ukraine',
251+
city: 'Amsterdam, Netherlands',
252252
languages: ['uk', 'ru', 'en'],
253253
reposOfficial: ['vuejs.org', 'vue-cli'],
254254
work: {

src/guide/installation.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ vue upgrade --next
9797
npm の場合:
9898

9999
```bash
100-
$ npm init @vitejs/app <プロジェクト名>
100+
$ npm init vite <プロジェクト名> -- --template vue
101101
$ cd <プロジェクト名>
102102
$ npm install
103103
$ npm run dev
@@ -106,18 +106,12 @@ $ npm run dev
106106
または Yarn の場合:
107107

108108
```bash
109-
$ yarn create @vitejs/app <プロジェクト名>
109+
$ yarn create vite <プロジェクト名> --template vue
110110
$ cd <プロジェクト名>
111111
$ yarn
112112
$ yarn dev
113113
```
114114

115-
ユーザ名に「Mike Baker」のように空白が入っていると、 Vite が成功しないことがあります。次を試してみてください。
116-
117-
```bash
118-
$ create-vite-app <プロジェクト名>
119-
```
120-
121115
## さまざまなビルドについて
122116

123117
[npm パッケージの `dist/` ディレクトリ](https://cdn.jsdelivr.net/npm/vue@3.0.2/dist/) には、Vue.js の多くのさまざまなビルドが見つかります。利用用途ごとに `dist` ファイルの使い分けの概要を説明します。

src/guide/migration/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Vue.js を使うのは初めてですか? [エッセンシャルガイド](/gu
2929
- [Vite](https://github.com/vitejs/vite) を使った Scaffold:
3030

3131
```bash
32-
npm init @vitejs/app hello-vue3 # OR yarn create @vitejs/app hello-vue3
32+
npm init vite hello-vue3 -- --template vue # OR yarn create vite hello-vue3 --template vue
3333
```
3434

3535
- [vue-cli](https://cli.vuejs.org/) を使った Scaffold:

src/guide/migration/migration-build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ export default {
314314
| V_ON_KEYCODE_MODIFIER || `v-on` が keyCode 修飾子をサポートしなくなりました | [link](/guide/migration/keycode-modifiers.html) |
315315
| CUSTOM_DIR || カスタムディレクティブのフック名が変更されました | [link](/guide/migration/custom-directives.html) |
316316
| ATTR_FALSE_VALUE || バインディングの値が真偽値の `false` の場合、属性を削除しないようになりました | [link](/guide/migration/attribute-coercion.html) |
317-
| ATTR_ENUMERATED_COERSION || 特殊なケースの列挙された属性は廃止されました | [link](/guide/migration/attribute-coercion.html) |
317+
| ATTR_ENUMERATED_COERCION || 特殊なケースの列挙された属性は廃止されました | [link](/guide/migration/attribute-coercion.html) |
318318
| TRANSITION_GROUP_ROOT || `<transition-group>` は、デフォルトでルート要素をレンダリングしなくなりました | [link](/guide/migration/transition-group.html) |
319319
| COMPONENT_ASYNC || 非同期コンポーネントの API が変更されました(`defineAsyncComponent` が必要になりました) | [link](/guide/migration/async-components.html) |
320320
| COMPONENT_FUNCTIONAL || 関数型コンポーネントの API が変更されました(プレーンな関数であることが必須になりました) | [link](/guide/migration/functional-components.html) |

src/guide/mobile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Vue.js は、ネイティブにはモバイルアプリの開発をサポート
2020

2121
**リソース**
2222

23-
- [NativeScript + Vue.js ガイド](https://nativescript.org/vue/)
23+
- [NativeScript + Vue.js ガイド](https://nativescript-vue.org/)

0 commit comments

Comments
 (0)