diff --git a/README.md b/README.md
index 190e957..ad78f60 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,23 @@
-# deep-dive-into-aggregates-in-vue-treegrid
+# Deep Dive into Aggregates in Vue TreeGrid
+
A quick-start project that helps you display aggregate values for columns in the Syncfusion Vue Tree Grid component. This project contains code to enable aggregate with their types. It also has code to display the custom aggregate function.
+
+Refer to the following documentation on aggregates in the Syncfusion Vue Tree Grid component:
+https://ej2.syncfusion.com/vue/documentation/treegrid/aggregates/aggregates/
+
+Check out this online aggregates example of the Syncfusion Vue Tree Grid component:
+https://ej2.syncfusion.com/vue/demos/#/bootstrap5/tree-grid/aggregate.html
+
+Refer to the following Syncfusion Vue Tree Grid getting started video:
+https://www.youtube.com/watch?v=FEMyOHKjjao
+
+Check the following documentation to know more about template rendering in Syncfusion Vue components,
+https://ej2.syncfusion.com/vue/documentation/common/template/
+
+## Project prerequisites
+
+Make sure that you have the latest versions of Vue, Node, Vue Class Component, and Visual Studio Code in your machine before starting to work on this project.
+
+### How to run this application?
+
+To run this application, you need to clone the `deep-dive-into-aggregates-in-vue-treegrid` repository and then open it in Visual Studio Code. Now, simply install all the necessary react packages into your current project using the `npm install` command and run your project using the `npm run serve` command.
\ No newline at end of file
diff --git a/babel.config.js b/babel.config.js
new file mode 100644
index 0000000..e955840
--- /dev/null
+++ b/babel.config.js
@@ -0,0 +1,5 @@
+module.exports = {
+ presets: [
+ '@vue/cli-plugin-babel/preset'
+ ]
+}
diff --git a/jsconfig.json b/jsconfig.json
new file mode 100644
index 0000000..4aafc5f
--- /dev/null
+++ b/jsconfig.json
@@ -0,0 +1,19 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "module": "esnext",
+ "baseUrl": "./",
+ "moduleResolution": "node",
+ "paths": {
+ "@/*": [
+ "src/*"
+ ]
+ },
+ "lib": [
+ "esnext",
+ "dom",
+ "dom.iterable",
+ "scripthost"
+ ]
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..411eaca
--- /dev/null
+++ b/package.json
@@ -0,0 +1,46 @@
+{
+ "name": "myvueproject",
+ "version": "0.1.0",
+ "private": true,
+ "scripts": {
+ "serve": "vue-cli-service serve",
+ "build": "vue-cli-service build",
+ "lint": "vue-cli-service lint"
+ },
+ "dependencies": {
+ "@syncfusion/ej2-vue-grids": "^20.2.45",
+ "@syncfusion/ej2-vue-treegrid": "^20.2.45",
+ "core-js": "^3.8.3",
+ "vue": "^3.2.13",
+ "vue-class-component": "^8.0.0-rc.1"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.12.16",
+ "@babel/eslint-parser": "^7.12.16",
+ "@vue/cli-plugin-babel": "~5.0.0",
+ "@vue/cli-plugin-eslint": "~5.0.0",
+ "@vue/cli-service": "~5.0.0",
+ "eslint": "^7.32.0",
+ "eslint-plugin-vue": "^8.0.3"
+ },
+ "eslintConfig": {
+ "root": true,
+ "env": {
+ "node": true
+ },
+ "extends": [
+ "plugin:vue/vue3-essential",
+ "eslint:recommended"
+ ],
+ "parserOptions": {
+ "parser": "@babel/eslint-parser"
+ },
+ "rules": {}
+ },
+ "browserslist": [
+ "> 1%",
+ "last 2 versions",
+ "not dead",
+ "not ie 11"
+ ]
+}
diff --git a/public/favicon.ico b/public/favicon.ico
new file mode 100644
index 0000000..df36fcf
Binary files /dev/null and b/public/favicon.ico differ
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..3e5a139
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,17 @@
+
+
+