Skip to content

Commit 025d359

Browse files
committed
chore: Fixed On-the-fly translation.
1 parent ffc37fd commit 025d359

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/guide/migration/custom-elements-interop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Vue.config.ignoredElements = ['plastic-button']
5252
]
5353
```
5454

55-
- オンザフライでテンプレートをコンパイルする場合は`app.config.isCustomElement`で設定します。
55+
- 直接テンプレートをコンパイルする場合は`app.config.isCustomElement`で設定します。
5656

5757
```js
5858
const app = Vue.createApp({})
@@ -136,6 +136,6 @@ Vue 2 では、ネイティブタグに `is` プロパティを使用してこ
136136

137137
## 移行の戦略
138138

139-
- `config.ignorededElements``vue-loader``compilerOptions` (ビルドステップ) または `app.config.isCustomElement` (オンザフライのテンプレートコンパイル) のいずれかで置き換えます。
139+
- `config.ignorededElements``vue-loader``compilerOptions` (ビルドステップ) または `app.config.isCustomElement` (直接テンプレートコンパイル) のいずれかで置き換えます。
140140

141141
- `<component>`以外のタグで `is` を使用しているものはすべて `<component is="...">` (SFC テンプレートの場合) または `v-is` (in-DOM テンプレートの場合) に変更します。

0 commit comments

Comments
 (0)