
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@col0ring/swipe-cell
Advanced tools
一个基于 vue 3 的 SwipeCell 组件。
npm i @col0ring/swipe-cell
# or
yarn add @col0ring/swipe-cell
import { createApp } from 'vue'
import SwipeCell from '@col0ring/swipe-cell'
const app = createApp()
app.use(SwipeCell)
| 参数 | 说明 |
|---|---|
| content | 内容区域值 |
| delText | 默认删除按钮文字 |
| 参数 | 说明 |
|---|---|
| delete | 点击删除按钮回调 |
| 参数 | 说明 |
|---|---|
| default(默认插槽) | 内容区域 |
| actions | 滑动按钮区域,可手动修改按钮 |
<template>
<div>
<swipe-cell content="example"> </swipe-cell>
<swipe-cell content="example" delText="delete" @delete="handleDelete">
</swipe-cell>
<swipe-cell>
example
<template #actions>
<button>删除1</button>
<button>删除2</button>
</template>
</swipe-cell>
</div>
</template>
<script>
export default defineComponent({
setup() {
const handleDelete = () => {
console.log('delete')
}
return {
handleDelete
}
}
})
</script>
FAQs
a swipe-cell component based on Vue 3
We found that @col0ring/swipe-cell 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.