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 6fdc179 commit 0f91426Copy full SHA for 0f91426
docs/api/createLocalVue.md
@@ -12,9 +12,11 @@ Use it with `options.localVue`:
12
13
```js
14
import { createLocalVue, shallowMount } from '@vue/test-utils'
15
+import MyPlugin from 'my-plugin'
16
import Foo from './Foo.vue'
17
18
const localVue = createLocalVue()
19
+localVue.use(MyPlugin)
20
const wrapper = shallowMount(Foo, {
21
localVue,
22
mocks: { foo: true }
0 commit comments