You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`options.context` (`Object`): Passes context to functional component. Can only be used with functional components
29
29
30
+
`options.children` (`Array<string|Component|Function>`): Passes children to be rendered by functional components
31
+
30
32
`options.localVue` (`Object`): vue class to use in `mount`. See [createLocalVue](/api/createLocalVue.md)
31
33
32
34
`options.slots` (`Object`): Render component with slots.
@@ -35,9 +37,9 @@
35
37
36
38
`options.slots.name` (`Array[Component]|Component`): Named slots. i.e. slots.name will match a <slotname="name" />, can be a Vue component or array of Vue components
37
39
38
-
`options.globals` (`Object`): Add globals to Vue instance.
40
+
`options.intercept` (`Object`): Add globals to Vue instance.
39
41
40
-
`options.stub` (`Object|Array<string>`): Stubs components matching the name. Takes object or array of strings
42
+
`options.stubs` (`Object|Array<string>`): Stubs components matching the name. Takes object or array of strings
`options.context` (`Object`): Passes context to functional component. Can only be used with functional components
29
29
30
+
`options.children` (`Array<string|Component|Function>`): Passes children to be rendered by functional components
31
+
30
32
`options.localVue` (`Object`): vue class to use in `mount`. See [createLocalVue](/api/createLocalVue.md)
31
33
32
34
`options.slots` (`Object`): Render component with slots.
@@ -35,9 +37,9 @@
35
37
36
38
`options.slots.name` (`Array[Component]|Component`): Named slots. i.e. slots.name will match a <slotname="name" />, can be a Vue component or array of Vue components
37
39
38
-
`options.globals` (`Object`): Add globals to Vue instance.
40
+
`options.intercept` (`Object`): Add globals to Vue instance.
39
41
40
-
`options.stub` (`Object|Array<string>`): Stubs components matching the name. Takes object or array of strings
42
+
`options.stubs` (`Object|Array<string>`): Stubs components matching the name. Takes object or array of strings
0 commit comments