Skip to content

Commit 1b748c2

Browse files
Getting started with the vue2 pivot table component
1 parent 2f84419 commit 1b748c2

File tree

10 files changed

+13203
-2
lines changed

10 files changed

+13203
-2
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
6+
# local env files
7+
.env.local
8+
.env.*.local
9+
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
1-
# getting-started-with-the-vue2-pivot-table-component
2-
A quick-start project that demonstrates how to integrate a vue 2 pivot table component into a vue 2 application with some of its fundamental features such as FieldList, GroupingBar, and CalculatedField.
1+
# Getting Started with the Vue2 Pivot Table Component
2+
A quick-start project that helps you to create and configure the Syncfusion Vue2 Pivot Table. This project also includes a code snippet to add required fields in the Vue2 Pivot Table and shows you how to add useful features like a grouping bar, filtering, formatting, Calculated field, Sorting and a field list.
3+
4+
Refer to the following documentation to learn about the Vue2 Pivot Table component: https://ej2.syncfusion.com/vue/documentation/pivotview/getting-started
5+
6+
Check out this online example of the Blazor Pivot Table component: https://ej2.syncfusion.com/vue/demos/#/fluent2/pivot-table/overview.html
7+
8+
## Project prerequisites
9+
10+
Make sure that you have the latest versions of NodeJS and Visual Studio Code in your machine before starting to work on this project.
11+
12+
## How to run this application?
13+
To run this application, you need to clone the `Getting Started with the Vue2 Pivot Table Component` repository and then open it in Visual Studio Code. Now, simply install all the necessary Vue2 packages into your current project using the `npm install` command and run your project using the `npm run serve` command

babel.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}

jsconfig.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"module": "esnext",
5+
"baseUrl": "./",
6+
"moduleResolution": "node",
7+
"paths": {
8+
"@/*": [
9+
"src/*"
10+
]
11+
},
12+
"lib": [
13+
"esnext",
14+
"dom",
15+
"dom.iterable",
16+
"scripthost"
17+
]
18+
}
19+
}

0 commit comments

Comments
 (0)