Skip to content

Commit 5b48887

Browse files
authored
update application-api.md (#1391)
1 parent 268dcfa commit 5b48887

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/api/application-api.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ app.mount('#my-app')
235235
Providing values via the application is especially useful when writing plugins, as plugins typically wouldn't be able to provide values using components. It is an alternative to using [globalProperties](application-config.html#globalproperties).
236236

237237
:::tip Note
238-
The `provide` and `inject` bindings are NOT reactive. This is intentional. However, if you pass down an observed object, properties on that object do remain reactive.
238+
The `provide` and `inject` bindings are NOT reactive. This is intentional. However, if you pass down a reactive object, properties on that object do remain reactive.
239239
:::
240240

241241
- **Example:**
@@ -298,9 +298,9 @@ setTimeout(() => app.unmount(), 5000)
298298

299299
- **Usage:**
300300

301-
Install a Vue.js plugin. If the plugin is an Object, it must expose an `install` method. If it is a function itself, it will be treated as the install method.
301+
Install a Vue.js plugin. If the plugin is an Object, it must expose an `install` method. If it is a function itself, it will be treated as the `install` method.
302302

303-
The install method will be called with the application as its first argument. Any `options` passed to `use` will be passed on in subsequent arguments.
303+
The `install` method will be called with the application as its first argument. Any `options` passed to `use` will be passed on in subsequent arguments.
304304

305305
When this method is called on the same plugin multiple times, the plugin will be installed only once.
306306

0 commit comments

Comments
 (0)