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 d6e1ac8 commit 2187e94Copy full SHA for 2187e94
src/config.ts
@@ -4,7 +4,7 @@ import { VueWrapper } from './vueWrapper'
4
import { DOMWrapper } from './domWrapper'
5
6
interface GlobalConfigOptions {
7
- global: GlobalMountOptions
+ global: Required<GlobalMountOptions>
8
plugins: {
9
VueWrapper: Pluggable<VueWrapper<ComponentPublicInstance>>
10
DOMWrapper: Pluggable<DOMWrapper<Element>>
@@ -56,7 +56,15 @@ export const config: GlobalConfigOptions = {
56
stubs: {
57
transition: true,
58
'transition-group': true
59
- }
+ },
60
+ provide: {},
61
+ components: {},
62
+ config: {},
63
+ directives: {},
64
+ mixins: [],
65
+ mocks: {},
66
+ plugins: [],
67
+ renderStubDefaultSlot: false
68
},
69
70
VueWrapper: new Pluggable(),
0 commit comments