Skip to content

Summary of changes for the 3rd week of July #461

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jul 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/.vuepress/components/community/team/members.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
10 changes: 2 additions & 8 deletions src/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ vue upgrade --next
npm の場合:

```bash
$ npm init @vitejs/app <プロジェクト名>
$ npm init vite <プロジェクト名> -- --template vue
$ cd <プロジェクト名>
$ npm install
$ npm run dev
Expand All @@ -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` ファイルの使い分けの概要を説明します。
Expand Down
2 changes: 1 addition & 1 deletion src/guide/migration/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/guide/migration/migration-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | ✔ | `<transition-group>` は、デフォルトでルート要素をレンダリングしなくなりました | [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) |
Expand Down
2 changes: 1 addition & 1 deletion src/guide/mobile.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ Vue.js は、ネイティブにはモバイルアプリの開発をサポート

**リソース**

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