Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/content/2.get-started/1.guide/2.setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ app.use(vfm).mount('#app')
### Nuxt 3

```ts [./plugins/vue-final-modal.ts]
import { createVfm } from 'vue-final-modal'
import { createVfm, type Vfm } from 'vue-final-modal'

export default defineNuxtPlugin((nuxtApp) => {
const vfm = createVfm() as any
const vfm = createVfm() as Vfm

nuxtApp.vueApp.use(vfm)
})
Expand Down
4 changes: 2 additions & 2 deletions docs/content/2.get-started/1.guide/3.migration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ export default defineNuxtPlugin(nuxtApp => {
Will be re-written as this:

```ts [./plugins/vue-final-modal.ts]
import { createVfm } from 'vue-final-modal'
import { createVfm, type Vfm } from 'vue-final-modal'

export default defineNuxtPlugin((nuxtApp) => {
const vfm = createVfm() as any
const vfm = createVfm() as Vfm

nuxtApp.vueApp.use(vfm)
})
Expand Down