From ad3196707bdfd8b6c98f0f8ecf18cab19b4cfb2d Mon Sep 17 00:00:00 2001
From: 38elements <38elements@users.noreply.github.com>
Date: Tue, 15 May 2018 20:13:10 +0900
Subject: [PATCH 1/2] Update options.md
---
docs/en/api/options.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/en/api/options.md b/docs/en/api/options.md
index 54d3866b0..fd9f0a345 100644
--- a/docs/en/api/options.md
+++ b/docs/en/api/options.md
@@ -99,7 +99,7 @@ expect(wrapper.find('#fooWrapper').html()).toBe('
0,text1
- type: `{ [name: string]: Component | boolean } | Array`
-Stubs child components. Can be an Array of component names to stub, or an object. If `stubs` is an Array, every stub is ``.
+Stubs child components. Can be an Array of component names to stub, or an object. If `stubs` is an Array, every stub is `<${component name}-stub>`.
Example:
From 7955151e14521320f265008ef403740a19cc7fd6 Mon Sep 17 00:00:00 2001
From: 38elements <38elements@users.noreply.github.com>
Date: Tue, 15 May 2018 20:13:13 +0900
Subject: [PATCH 2/2] Update config.md
---
docs/en/api/config.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/en/api/config.md b/docs/en/api/config.md
index 9a85de8d1..aacec60fb 100644
--- a/docs/en/api/config.md
+++ b/docs/en/api/config.md
@@ -15,7 +15,7 @@ Vue Test Utils includes a config object to defined options used by Vue Test Util
The stub stored in `config.stubs` is used by default.
Stubs to use in components. These are overwritten by `stubs` passed in the mounting options.
-When passing `stubs` as an array in the mounting options, `config.stubs` are converted to an array, and will stub components with a basic component that returns ``.
+When passing `stubs` as an array in the mounting options, `config.stubs` are converted to an array, and will stub components with a basic component that returns `<${component name}-stub>`.
Example: