We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b740951 commit 9dc86ccCopy full SHA for 9dc86cc
src/api/application-api.md
@@ -305,15 +305,15 @@ setTimeout(() => app.unmount(), 5000)
305
306
- **Example:**
307
308
-```js
309
-import { createApp } from 'vue'
310
-import MyPlugin from './plugins/MyPlugin'
+ ```js
+ import { createApp } from 'vue'
+ import MyPlugin from './plugins/MyPlugin'
311
312
-const app = createApp({})
313
-const i18nStrings = {
+ const app = createApp({})
+ const i18nStrings = {
314
315
-app.use(MyPlugin)
316
-app.mount('#app')
317
-```
+ app.use(MyPlugin)
+ app.mount('#app')
+ ```
318
319
- **See also:** [Plugins](../guide/plugins.html)
0 commit comments