File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
docs/src/pages/all-about-qmarkdown Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -89,22 +89,22 @@ $ npm install @quasar/quasar-ui-qmarkdown
8989Then
9090
9191``` js
92- import { boot } from ' quasar/wrappers'
92+ import { defineBoot } from ' quasar/wrappers'
9393import Plugin from ' @quasar/quasar-ui-qmarkdown'
9494import ' @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
101101or from sources
102102
103103``` js
104- import { boot } from ' quasar/wrappers'
104+ import { defineBoot } from ' quasar/wrappers'
105105import 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```
You can’t perform that action at this time.
0 commit comments