From 5c82ae184408cfbe3feecbbfef9ed8e78ef8ef5a Mon Sep 17 00:00:00 2001 From: NataliaTepluhina Date: Tue, 13 Jul 2021 11:31:42 +0300 Subject: [PATCH 1/6] fix: updated location --- src/.vuepress/components/community/team/members.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/.vuepress/components/community/team/members.js b/src/.vuepress/components/community/team/members.js index c4a69770..509c2779 100644 --- a/src/.vuepress/components/community/team/members.js +++ b/src/.vuepress/components/community/team/members.js @@ -248,7 +248,7 @@ const members = [ { name: 'Natalia Tepluhina', title: 'Fox Tech Guru', - city: 'Kyiv, Ukraine', + city: 'Amsterdam, Netherlands', languages: ['uk', 'ru', 'en'], reposOfficial: ['vuejs.org', 'vue-cli'], work: { From a6091337a427171b6dac07249790d41513cb8903 Mon Sep 17 00:00:00 2001 From: NateScarlet Date: Wed, 14 Jul 2021 00:56:51 +0800 Subject: [PATCH 2/6] fix: typo on "ATTR_ENUMERATED_COERCION" (#1134) https://github.com/vuejs/vue-next/blob/03e26845e2c220b1350a35179acf3435e2711282/packages/runtime-core/src/compat/compatConfig.ts#L54 --- src/guide/migration/migration-build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/migration/migration-build.md b/src/guide/migration/migration-build.md index 487b5a1e..d3c842cd 100644 --- a/src/guide/migration/migration-build.md +++ b/src/guide/migration/migration-build.md @@ -314,7 +314,7 @@ export default { | V_ON_KEYCODE_MODIFIER | ✔ | `v-on` が keyCode 修飾子をサポートしなくなりました | [link](/guide/migration/keycode-modifiers.html) | | CUSTOM_DIR | ✔ | カスタムディレクティブのフック名が変更されました | [link](/guide/migration/custom-directives.html) | | ATTR_FALSE_VALUE | ✔ | バインディングの値が真偽値の `false` の場合、属性を削除しないようになりました | [link](/guide/migration/attribute-coercion.html) | -| ATTR_ENUMERATED_COERSION | ✔ | 特殊なケースの列挙された属性は廃止されました | [link](/guide/migration/attribute-coercion.html) | +| ATTR_ENUMERATED_COERCION | ✔ | 特殊なケースの列挙された属性は廃止されました | [link](/guide/migration/attribute-coercion.html) | | TRANSITION_GROUP_ROOT | ✔ | `` は、デフォルトでルート要素をレンダリングしなくなりました | [link](/guide/migration/transition-group.html) | | COMPONENT_ASYNC | ✔ | 非同期コンポーネントの API が変更されました(`defineAsyncComponent` が必要になりました) | [link](/guide/migration/async-components.html) | | COMPONENT_FUNCTIONAL | ✔ | 関数型コンポーネントの API が変更されました(プレーンな関数であることが必須になりました) | [link](/guide/migration/functional-components.html) | From 4b0487b8c39979fcd4b82e847b50f8031d27eb0b Mon Sep 17 00:00:00 2001 From: Faza Aulia Rosyadan <42485508+fazaio@users.noreply.github.com> Date: Wed, 14 Jul 2021 00:41:20 +0700 Subject: [PATCH 3/6] fix broken url (#1135) --- src/guide/mobile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/mobile.md b/src/guide/mobile.md index 19d2caaa..c56f1ffa 100644 --- a/src/guide/mobile.md +++ b/src/guide/mobile.md @@ -20,4 +20,4 @@ Vue.js は、ネイティブにはモバイルアプリの開発をサポート **リソース** -- [NativeScript + Vue.js ガイド](https://nativescript.org/vue/) +- [NativeScript + Vue.js ガイド](https://nativescript-vue.org/) From f9f13c56766d91e2cca15e781f3922663a775fff Mon Sep 17 00:00:00 2001 From: Doc Oliver <37000451+docyx@users.noreply.github.com> Date: Tue, 13 Jul 2021 18:05:55 -0400 Subject: [PATCH 4/6] chore: update migration installation instructions for Vite (#1136) `@vitejs/app` is now [deprecated](https://github.com/vitejs/vite/pull/4179). We should instruct users to use the new `create-vite` package instead. --- src/guide/migration/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/migration/introduction.md b/src/guide/migration/introduction.md index 0c570b7f..98c234be 100644 --- a/src/guide/migration/introduction.md +++ b/src/guide/migration/introduction.md @@ -29,7 +29,7 @@ Vue.js を使うのは初めてですか? [エッセンシャルガイド](/gu - [Vite](https://github.com/vitejs/vite) を使った Scaffold: ```bash - npm init @vitejs/app hello-vue3 # OR yarn create @vitejs/app hello-vue3 + npm init vite hello-vue3 -- --template vue # OR yarn create vite hello-vue3 --template vue ``` - [vue-cli](https://cli.vuejs.org/) を使った Scaffold: From 799d160b46e06caefbb3fbe4fb04b2612125ad05 Mon Sep 17 00:00:00 2001 From: Doc Oliver <37000451+docyx@users.noreply.github.com> Date: Wed, 14 Jul 2021 13:32:50 -0400 Subject: [PATCH 5/6] chore: update installation instructions for Vite (#1138) * chore: update deprecated Vite installation instructions for the installation guide * chore: remove mention of deprecated `create-vite-app` --- src/guide/installation.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/guide/installation.md b/src/guide/installation.md index f06791df..6c1e03a1 100644 --- a/src/guide/installation.md +++ b/src/guide/installation.md @@ -97,7 +97,7 @@ vue upgrade --next npm の場合: ```bash -$ npm init @vitejs/app <プロジェクト名> +$ npm init vite <プロジェクト名> -- --template vue $ cd <プロジェクト名> $ npm install $ npm run dev @@ -106,18 +106,12 @@ $ npm run dev または Yarn の場合: ```bash -$ yarn create @vitejs/app <プロジェクト名> +$ yarn create vite <プロジェクト名> --template vue $ cd <プロジェクト名> $ yarn $ yarn dev ``` -ユーザ名に「Mike Baker」のように空白が入っていると、 Vite が成功しないことがあります。次を試してみてください。 - -```bash -$ create-vite-app <プロジェクト名> -``` - ## さまざまなビルドについて [npm パッケージの `dist/` ディレクトリ](https://cdn.jsdelivr.net/npm/vue@3.0.2/dist/) には、Vue.js の多くのさまざまなビルドが見つかります。利用用途ごとに `dist` ファイルの使い分けの概要を説明します。 From 4831d4d939c6cb2c508068b4f3fa63efd5d8ec5e Mon Sep 17 00:00:00 2001 From: Travis Northcutt Date: Mon, 19 Jul 2021 16:45:09 -0600 Subject: [PATCH 6/6] Correct typo in Vite section of installation.md (#1141)