
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
vue-kanban-mao
Advanced tools
A drag and drop kanban board component
Add vue-kanban to your project with npm
npm install vue-kanban-mao
... or yarn
yarn add vue-kanban-mao
Install the plugin
import vueKanban from 'vue-kanban-mao'
Vue.use(vueKanban)
and then use the component in your project.
<kanban-board :stages="stages" :blocks="blocks"></kanban-board>
{
stages: ['on-hold', 'in-progress', 'needs-review', 'approved'],
blocks: [
{
id: 1,
status: 'on-hold',
title: 'Test',
},
],
}
The component will emit an event when a block is moved
<kanban-board :stages="stages" :blocks="blocks" @update-block="updateBlock"></kanban-board>
<script>
...
methods: {
updateBlock(id, status) {
this.blocks.find(b => b.id === Number(id)).status = status;
},
},
...
</script>
I have included a scss stylesheet in this repo as a starting point that can be used in your project
<style lang="scss">
@import './assets/kanban.scss';
</style>
Each block has a named slot which can be extended from the parent, like so...
<kanban-board :stages="stages" :blocks="blocks" @update-block="updateBlock">
<div v-for="stage in stages" :slot="stage" :key="stage">
<h2>{{ stage }}</h2>
</div>
<div v-for="block in blocks" :slot="block.id" :key="block.id">
<div>
<strong>id:</strong> {{ block.id }}
</div>
<div>
{{ block.title }}
</div>
</div>
</kanban-board>
FAQs
Kanban for vue
The npm package vue-kanban-mao receives a total of 1 weekly downloads. As such, vue-kanban-mao popularity was classified as not popular.
We found that vue-kanban-mao 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.