Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
vue-tabulation
Advanced tools
一款高性能高扩展性的 vue 表格组件
使用 npm
npm install vue-tabulation
直接下载/CDN 引用
<script src="https://unpkg.com/vue-tabulation"></script>
<template>
<vue-tabulation
:columns="columns"
:dataSource="dataSource"
></vue-tabulation>
</template>
<script>
import VueTabulation from 'vue-tabulation'
export default {
components: {
VueTabulation,
},
data() {
return {
columns: [
{
label: "姓名",
prop: "name",
width: 100
},
{
label: "年龄",
width: 60,
prop: "age"
},
{
label: "住址",
width: 200,
prop: "address"
}
],
dataSource: [{
name: '张三',
age: 20,
address: "上海市普陀区金沙江路 1518 弄",
},{
name: '李四',
age: 40,
address: "上海市普陀区金沙江路 1518 弄",
},{
name: '王五',
age: 18,
address: "上海市普陀区金沙江路 1518 弄",
}]
};
}
};
</script>
http://yangjunye.gitee.io/vue-tabulation
源码在<本仓库>/demo
执行 npm run dev
查看效果
FAQs
a vue based table component
The npm package vue-tabulation receives a total of 1 weekly downloads. As such, vue-tabulation popularity was classified as not popular.
We found that vue-tabulation demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.