File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ It just works like a charm without any settings. But if you need to customize th
13
13
14
14
``` ts[main.ts]
15
15
import Vue from 'vue'
16
- import { vfmPlugin, VfmOptions, $ModalProperty } from 'vue-final-modal'
16
+ import { vfmPlugin, VfmOptions, VueFinalModalProperty } from 'vue-final-modal'
17
17
18
18
Vue.use<VfmOptions>(vfmPlugin({
19
19
key: '$vfm',
@@ -24,7 +24,7 @@ Vue.use<VfmOptions>(vfmPlugin({
24
24
// define the setup options
25
25
declare module 'vue/types/vue' {
26
26
interface Vue {
27
- $vfm: $ModalProperty
27
+ $vfm: VueFinalModalProperty
28
28
}
29
29
}
30
30
```
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ version: 2
13
13
14
14
``` ts[main.ts]
15
15
import Vue from 'vue'
16
- import { vfmPlugin, VfmOptions, $ModalProperty } from 'vue-final-modal'
16
+ import { vfmPlugin, VfmOptions, VueFinalModalProperty } from 'vue-final-modal'
17
17
18
18
Vue.use<VfmOptions>(vfmPlugin({
19
19
key: '$vfm',
@@ -24,7 +24,7 @@ Vue.use<VfmOptions>(vfmPlugin({
24
24
// define the setup options
25
25
declare module 'vue/types/vue' {
26
26
interface Vue {
27
- $vfm: $ModalProperty
27
+ $vfm: VueFinalModalProperty
28
28
}
29
29
}
30
30
```
You can’t perform that action at this time.
0 commit comments