Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
vue-drag-sortable
Advanced tools
A vue dragging sortable component
$ npm install --save vue-drag-sortable
<template>
<div class="list">
<sortable v-for="(item, index) in listData"
v-model="dragData" <!-- (Required) Set an empty object to pass dragging data to each item -->
:key="item" <!-- (Required) Loop key for each item -->
:index="index" <!-- (Required) Index for each item -->
drag-direction="vertical | horizontal" <!-- (Optional) Dragging mode, optional to vertical or horizontal -->
replace-direction="vertical | horizontal" <!-- (Optional) Replacing mode(item reversing direction when mouse released), optional to vertical or horizontal -->
@sortend="sortend($event, listData)" <!-- (Optional) Event triggered when sort end -->
@sort="sorting" <!-- (Optional) Event triggered when sorting -->
@real-click="click"
>
Item {{ item }}
</sortable>
</div>
</template>
<script>
import Sortable from 'vue-drag-sortable'
export default {
comonents: {
Sortable
},
data () {
return {
dragData: {},
listData: [1,2,3,4,5,6,7,8,9,10]
};
},
methods: {
click (e) {
// Todo
},
sort (e) {
const { oldIndex, newIndex } = e
console.log(oldIndex, newIndex)
},
sortend (e, list) {
const { oldIndex, newIndex } = e
this.rearrange(list, oldIndex, newIndex)
},
rearrange (array, oldIndex, newIndex) {
if (oldIndex > newIndex) {
array.splice(newIndex, 0, array[oldIndex])
array.splice(oldIndex + 1, 1)
}
else {
array.splice(newIndex + 1, 0, array[oldIndex])
array.splice(oldIndex, 1)
}
}
}
}
</script>
<style>
.list {
position: relative; /* position of list container must be set to `relative` */
}
/* dragging item will be added with a `dragging` class */
/* so you can use this class to define the appearance of it */
.list > *.dragging {
box-shadow: 0 2px 10px 0 rgba(0,0,0,.2);
}
</style>
FAQs
A vue dragging sortable component
The npm package vue-drag-sortable receives a total of 8,665 weekly downloads. As such, vue-drag-sortable popularity was classified as popular.
We found that vue-drag-sortable 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.