Skip to content

Commit 861e9ee

Browse files
authored
Uploaded the example project.
1 parent ffea551 commit 861e9ee

File tree

17 files changed

+801
-2
lines changed

17 files changed

+801
-2
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
1-
# how-to-customize-the-vue-kanban-component-using-templates
2-
A quick-start Vue project that shows how to customize the [Vue Kanban]( https://www.syncfusion.com/vue-components/vue-kanban-board?utm_source=github&utm_medium=listing&utm_campaign=vue-kanban-templates-github-samples) component using templates. It includes a code snippet for customizing Kanban headers, swimlane headers, and card content.
1+
# How to Customize the Vue Kanban Component Using Templates
2+
3+
A quick-start Vue project that shows how to customize the [Vue Kanban]( https://www.syncfusion.com/vue-components/vue-kanban-board?utm_source=github&utm_medium=listing&utm_campaign=vue-kanban-templates-github-samples) component using templates. It includes a code snippet for customizing Kanban headers, swimlane headers, and card content.
4+
5+
Watch the video: Coming soon...
6+
7+
Refer to the following documentation to learn about the Vue Kanban component: https://ej2.syncfusion.com/vue/documentation/kanban/getting-started-page
8+
9+
Check out this online example of the Vue Kanban component: https://ej2.syncfusion.com/vue/demos/#/material3/kanban/default.html
10+
11+
Make sure you have the latest versions of Node.js and Visual Studio Code on your machine before working with this project.
12+
13+
## How to run this application
14+
To run this application, you need to clone the how-to-customize-the-vue-kanban-component-using-templates repository and then open it in Visual Studio Code. After that, just install all the necessary Vue packages in your project using the npm install command and run your project using the npm run dev command.

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite + Vue</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/main.js"></script>
12+
</body>
13+
</html>

package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "gettingstarted",
3+
"private": true,
4+
"version": "0.0.0",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite",
8+
"build": "vite build",
9+
"preview": "vite preview"
10+
},
11+
"dependencies": {
12+
"@syncfusion/ej2-vue-kanban": "^22.2.9",
13+
"vue": "^3.3.4"
14+
},
15+
"devDependencies": {
16+
"@vitejs/plugin-vue": "^4.2.3",
17+
"vite": "^4.4.5"
18+
}
19+
}

public/vite.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)