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.
2 parents e33a797 + 0f91426 commit 089a6caCopy full SHA for 089a6ca
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