Skip to content

Commit 69367c6

Browse files
Jinjiangeddyerburgh
authored andcommitted
docs(zh-cn):synced recent updates from #ed7673c ot #b21a496 (#237)
1 parent 5f075ce commit 69367c6

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

docs/zh-cn/api/options.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Vue 选项会在一个新的实例被创建的时候传递给组件。比如 `st
1313
- [`localVue`](#localvue)
1414
- [`attachToDocument`](#attachtodocument)
1515
- [`attrs`](#attrs)
16+
- [`provide`](#provide)
1617
- [`listeners`](#listeners)
1718
- [`clone`](#clone)
1819

@@ -160,6 +161,8 @@ expect(wrapper.vm.$route).toBeInstanceOf(Object)
160161

161162
如果为 `true` 则会在挂载之前克隆组件。这样做会回避原始组件定义的突变。
162163

163-
`options.mocks` (`Object`):向 Vue 实例添加全局属性。
164+
### `provide`
164165

165-
`options.localVue` (`Object`):在 `mount` 中使用的 `Vue` 类。请移步 [`createLocalVue`](createLocalVue.md)
166+
- 类型:`Object`
167+
168+
为组件传递用于注入的属性。可查阅 [provie/inject](https://cn.vuejs.org/v2/api/#provide-inject) 了解更多。

docs/zh-cn/guides/getting-started.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,34 @@ Vue 会异步的将未生效的 DOM 更新批量应用,以避免因数据反
110110

111111
*注意:当你需要为诸如异步回调或 Promise 解析等操作显性改进为事件循环的时候,`nextTick` 仍然是必要的。*
112112

113+
如果你仍然需要在自己的测试文件中使用 `nextTick`,注意任何在其内部被抛出的错误可能都不会被测试运行器捕获,因为其内部使用了 Promise。关于这个问题有两个建议:要么你可以在测试的一开始将 Vue 的全局错误处理器设置为 `done` 回调,要么你可以在调用 `nextTick` 时不带参数让其作为一个 Promise 返回:
114+
115+
```js
116+
// 这不会被捕获
117+
it('will time out', (done) => {
118+
Vue.nextTick(() => {
119+
expect(true).toBe(false)
120+
done()
121+
})
122+
})
123+
124+
// 接下来的两项测试都会如预期工作
125+
it('will catch the error using done', (done) => {
126+
Vue.config.errorHandler = done
127+
Vue.nextTick(() => {
128+
expect(true).toBe(false)
129+
done()
130+
})
131+
})
132+
133+
it('will catch the error using a promise', () => {
134+
return Vue.nextTick()
135+
.then(function () {
136+
expect(true).toBe(false)
137+
})
138+
})
139+
```
140+
113141
## 下一步是什么
114142

115143
- [选择一个测试运行器](./choosing-a-test-runner.md)以把 `vue-test-utils` 集成到你的工程里。

docs/zh-cn/guides/using-with-vuex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ describe('Actions.vue', () => {
9191
})
9292
```
9393

94-
这里发生了什么?首先我们用 `Vue.use` 方法告诉 Vue 使用 Vuex。这只是 `Vue.use` 的一个包裹器。
94+
这里发生了什么?首先我们用 `localVue.use` 方法告诉 Vue 使用 Vuex。这只是 `Vue.use` 的一个包裹器。
9595

9696
然后我们用 `new Vuex.store` 伪造了一个 store 并填入假数据。我们只把它传递给 action,因为我们只关心这个。
9797

0 commit comments

Comments
 (0)