Table
Setting type : text xuất ra 1 mảng để in ra table html
Setting
{
id: "table",
type: "table",
default: {
head: [
{
data: [
{
data: "head col 1",
},
{
data: "head col 2",
},
],
},
],
body: [
{
data: [
{
data: "row 1 col 1",
},
{
data: "row 1 col 2",
},
],
},
{
data: [
{
data: "row 2 col 1",
},
{
data: "row 2 col 2",
},
],
},
],
headColumn: 0,
},
}