From d4d8f20775412fa9e1101731a9bb451e023ea531 Mon Sep 17 00:00:00 2001 From: wuzhiqing Date: Wed, 22 Jan 2025 07:05:48 +0000 Subject: [PATCH] docs(zh-cn): [event-handling.md] split comment into two lines to maintain syntax highlighting --- docs/zh/guide/essentials/event-handling.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/zh/guide/essentials/event-handling.md b/docs/zh/guide/essentials/event-handling.md index d8a3eabfc..7bd54784b 100644 --- a/docs/zh/guide/essentials/event-handling.md +++ b/docs/zh/guide/essentials/event-handling.md @@ -61,7 +61,8 @@ test('emits an event with count when clicked', () => { wrapper.find('button').trigger('click') wrapper.find('button').trigger('click') - // `emitted()` 接受一个参数。它返回一个包含所有 `this.$emit('increment')` 发生情况的数组。 + // `emitted()` 接受一个参数。 + // 它返回一个包含所有 `this.$emit('increment')` 发生情况的数组。 const incrementEvent = wrapper.emitted('increment') // 我们“点击”了两次,所以 `increment` 的数组应该有两个值。