Skip to content

Commit c1b80c3

Browse files
committed
fix(docs): updated to use defineBoot
1 parent a34d297 commit c1b80c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/src/pages/all-about-qmarkdown/installation-types.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,22 +89,22 @@ $ npm install @quasar/quasar-ui-qmarkdown
8989
Then
9090

9191
```js
92-
import { boot } from 'quasar/wrappers'
92+
import { defineBoot } from 'quasar/wrappers'
9393
import Plugin from '@quasar/quasar-ui-qmarkdown'
9494
import '@quasar/quasar-ui-qmarkdown/dist/index.css'
9595

96-
export default boot(({ app }) => {
96+
export default defineBoot(({ app }) => {
9797
app.use(Plugin)
9898
})
9999
```
100100

101101
or from sources
102102

103103
```js
104-
import { boot } from 'quasar/wrappers'
104+
import { defineBoot } from 'quasar/wrappers'
105105
import Plugin from '@quasar/quasar-ui-qmarkdown/src/QMarkdown.js'
106106

107-
export default boot(({ app }) => {
107+
export default defineBoot(({ app }) => {
108108
app.use(Plugin)
109109
})
110110
```

0 commit comments

Comments
 (0)