Skip to content

Commit ca32d39

Browse files
committed
refine doc
1 parent c76ed7f commit ca32d39

File tree

2 files changed

+7
-7
lines changed
  • examples/src/docs

2 files changed

+7
-7
lines changed

examples/src/docs/en/ve-table/api/db.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ const columnsType2 = [
6969
{
7070
key: "b",
7171
field: "name",
72-
title: "方法名",
73-
width: "10%",
72+
title: "Methods Name",
73+
width: "15%",
7474
align: "left",
7575
renderBodyCell: ({ row, column, rowIndex }, h) => {
7676
return <span domPropsInnerHTML={row.name}></span>;
@@ -79,8 +79,8 @@ const columnsType2 = [
7979
{
8080
key: "c",
8181
field: "desc",
82-
title: "说明",
83-
width: "70%",
82+
title: "Description",
83+
width: "65%",
8484
align: "left",
8585
renderBodyCell: ({ row, column, rowIndex }, h) => {
8686
return <span domPropsInnerHTML={row.desc}></span>;
@@ -89,7 +89,7 @@ const columnsType2 = [
8989
{
9090
key: "d",
9191
field: "param",
92-
title: "参数",
92+
title: "Parameters",
9393
width: "20%",
9494
align: "left",
9595
renderBodyCell: ({ row, column, rowIndex }, h) => {

examples/src/docs/zh/ve-table/api/db.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const columnsType2 = [
7070
key: "b",
7171
field: "name",
7272
title: "方法名",
73-
width: "10%",
73+
width: "15%",
7474
align: "left",
7575
renderBodyCell: ({ row, column, rowIndex }, h) => {
7676
return <span domPropsInnerHTML={row.name}></span>;
@@ -80,7 +80,7 @@ const columnsType2 = [
8080
key: "c",
8181
field: "desc",
8282
title: "说明",
83-
width: "70%",
83+
width: "65%",
8484
align: "left",
8585
renderBodyCell: ({ row, column, rowIndex }, h) => {
8686
return <span domPropsInnerHTML={row.desc}></span>;

0 commit comments

Comments
 (0)