From 3406cecbd8a9beba76a0065580f75c2da1fc436a Mon Sep 17 00:00:00 2001 From: Plane-walker Date: Wed, 7 Aug 2019 10:06:08 +0800 Subject: [PATCH] fix: '{' and ')' are not match (#1062) * fix: '{' doesn't match * fix: '}' doesn't match --- components/table/index.en-US.md | 4 ++-- components/table/index.zh-CN.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/table/index.en-US.md b/components/table/index.en-US.md index fa7d88b70..d0ffcfec3 100644 --- a/components/table/index.en-US.md +++ b/components/table/index.en-US.md @@ -86,14 +86,14 @@ Follow [Vue jsx](https://github.com/vuejs/babel-plugin-transform-vue-jsx) syntax xxxx... }, }; - )} + }} customHeaderRow={(column) => { return { on: { click: () => {}, // click header row }, }; - )} + }} /> ``` diff --git a/components/table/index.zh-CN.md b/components/table/index.zh-CN.md index dc64f9e03..8ba643ad2 100644 --- a/components/table/index.zh-CN.md +++ b/components/table/index.zh-CN.md @@ -88,14 +88,14 @@ const columns = [{ }, }; - )} + }} customHeaderRow={(column) => { return { on: { click: () => {}, // 点击表头行 } }; - )} + }} /> ```