Skip to content

Commit 4d94ce9

Browse files
committed
fix: reword the introduction and example for application config
vuejs/docs@ec0816e#diff-4bcba432c725c343e09028bc45d74c2a76af05e7148214dc7da62a8aace1718b
1 parent 76d197d commit 4d94ce9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/api/application-config.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# アプリケーション構成
22

3-
`config` は、 Vue アプリケーションのグローバル設定を含むオブジェクトです。アプリケーションをマウントする前に、以下のプロパティを変更できます:
3+
Every Vue application exposes a `config` object that contains the configuration settings for that application:
44

55
```js
66
const app = Vue.createApp({})
77

8-
app.config = {...}
9-
10-
app.mount(...);
8+
console.log(app.config)
119
```
1210

11+
You can modify its properties, listed below, before mounting your application.
12+
1313
## errorHandler
1414

1515
- **型:** `Function`

0 commit comments

Comments
 (0)