I have a web application where I am integrating the vue-kanban component. My goal is to showcase certain objects from my database on the kanban board, but I could use some guidance on how to incorporate them into the display.
Below is the array containing the projects:
props: {
projects: {
type: Array,
required: true,
}
},
Instead of using blocks
, I would like to populate the kanban board with these projects. Here's an example snippet of the code:
data() {
return {
stages: ['open', 'doing', 'close'],
blocks: [
{
id: 1,
status: 'open',
title: 'test',
},
],
};
}
I am utilizing this component: https://github.com/BrockReece/vue-kanban