🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

web_table

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

web_table - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+41
miniprogram_npm/web_table/table.js
// components/table/table.js
Component({
/**
* 组件的属性列表
*/
properties: {
tabW: {
// 表格每一列的宽度
type: Array,
value: []
},
tabHDate: {
// 标题内容
type: Array,
value: []
},
rowData: {
type: Array, // 表格数据
value: []
},
rowKey: { // row属性
type: Array,
value: []
}
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
}
})
{
"component": true,
"usingComponents": {}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

## table组件库
安装:
使用**npm i web_table**
- tabHDate标题内容
- tabW 标题宽
- rowKey 字段名
- rowData 字段值
+5
-2
{
"name": "web_table",
"version": "1.0.0",
"version": "1.0.1",
"description": "",

@@ -12,3 +12,6 @@ "miniprogram": "src",

"author": "",
"license": "ISC"
"license": "ISC",
"dependencies": {
"web_table": "^1.0.0"
}
}
{
"usingComponents": {
"table": "/components/table/table"
"table": "/miniprogram_npm/web_table/table"
}
}

Sorry, the diff of this file is not supported yet