File tree Expand file tree Collapse file tree 5 files changed +6
-12
lines changed Expand file tree Collapse file tree 5 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ const members = [
248
248
{
249
249
name : 'Natalia Tepluhina' ,
250
250
title : 'Fox Tech Guru' ,
251
- city : 'Kyiv, Ukraine ' ,
251
+ city : 'Amsterdam, Netherlands ' ,
252
252
languages : [ 'uk' , 'ru' , 'en' ] ,
253
253
reposOfficial : [ 'vuejs.org' , 'vue-cli' ] ,
254
254
work : {
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ vue upgrade --next
97
97
npm の場合:
98
98
99
99
``` bash
100
- $ npm init @vitejs/app < プロジェクト名>
100
+ $ npm init vite < プロジェクト名> -- --template vue
101
101
$ cd < プロジェクト名>
102
102
$ npm install
103
103
$ npm run dev
@@ -106,18 +106,12 @@ $ npm run dev
106
106
または Yarn の場合:
107
107
108
108
``` bash
109
- $ yarn create @vitejs/app < プロジェクト名>
109
+ $ yarn create vite < プロジェクト名> --template vue
110
110
$ cd < プロジェクト名>
111
111
$ yarn
112
112
$ yarn dev
113
113
```
114
114
115
- ユーザ名に「Mike Baker」のように空白が入っていると、 Vite が成功しないことがあります。次を試してみてください。
116
-
117
- ``` bash
118
- $ create-vite-app < プロジェクト名>
119
- ```
120
-
121
115
## さまざまなビルドについて
122
116
123
117
[ npm パッケージの ` dist/ ` ディレクトリ] ( https://cdn.jsdelivr.net/npm/vue@3.0.2/dist/ ) には、Vue.js の多くのさまざまなビルドが見つかります。利用用途ごとに ` dist ` ファイルの使い分けの概要を説明します。
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Vue.js を使うのは初めてですか? [エッセンシャルガイド](/gu
29
29
- [ Vite] ( https://github.com/vitejs/vite ) を使った Scaffold:
30
30
31
31
``` 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
33
33
```
34
34
35
35
- [ vue-cli] ( https://cli.vuejs.org/ ) を使った Scaffold:
Original file line number Diff line number Diff line change @@ -314,7 +314,7 @@ export default {
314
314
| V_ON_KEYCODE_MODIFIER | ✔ | ` v-on ` が keyCode 修飾子をサポートしなくなりました | [ link] ( /guide/migration/keycode-modifiers.html ) |
315
315
| CUSTOM_DIR | ✔ | カスタムディレクティブのフック名が変更されました | [ link] ( /guide/migration/custom-directives.html ) |
316
316
| 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 ) |
318
318
| TRANSITION_GROUP_ROOT | ✔ | ` <transition-group> ` は、デフォルトでルート要素をレンダリングしなくなりました | [ link] ( /guide/migration/transition-group.html ) |
319
319
| COMPONENT_ASYNC | ✔ | 非同期コンポーネントの API が変更されました(` defineAsyncComponent ` が必要になりました) | [ link] ( /guide/migration/async-components.html ) |
320
320
| COMPONENT_FUNCTIONAL | ✔ | 関数型コンポーネントの API が変更されました(プレーンな関数であることが必須になりました) | [ link] ( /guide/migration/functional-components.html ) |
Original file line number Diff line number Diff line change @@ -20,4 +20,4 @@ Vue.js は、ネイティブにはモバイルアプリの開発をサポート
20
20
21
21
** リソース**
22
22
23
- - [ NativeScript + Vue.js ガイド] ( https://nativescript.org/vue / )
23
+ - [ NativeScript + Vue.js ガイド] ( https://nativescript-vue .org/ )
You can’t perform that action at this time.
0 commit comments