Skip to content

Commit d6bae61

Browse files
authored
Added Vue Dropdown List Sample
1 parent 4dfa4c4 commit d6bae61

File tree

10 files changed

+11698
-2
lines changed

10 files changed

+11698
-2
lines changed

README.md

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,35 @@
1-
# create-cascading-dropdown-list-using-vue-dropdown-list
2-
A quick start Vue project that helps you to learn how to create a Cascading Dropdown List using Vue Dropdown List of Syncfusion.
1+
# Create a Cascading Dropdown List Using Vue Dropdown List
2+
3+
Get a quick overview on how to create a Cascading Dropdown List using Vue Dropdown List of Syncfusion. You will learn how to add a series of Syncfusion Vue DropDown List to the Vue application. Also, you will see how to populate the data source of second DropDown List based on the value selected from the first DropDown List.
4+
5+
Example: https://ej2.syncfusion.com/vue/demos/#/material/drop-down-list/cascading.html
6+
7+
Documentation: https://ej2.syncfusion.com/vue/documentation/drop-down-list/how-to/cascading
8+
9+
10+
## Project pre-requisites
11+
Make sure that you have the compatible versions of Node and Vue-Cli in your machine before starting to work on this project.
12+
13+
## How to run this application?
14+
To run this application, you need to first clone the `create-a-cascading-dropdown-list-using-vue-dropdown-list` repository and then navigate to its appropriate path where it has been located in your system.
15+
16+
To do so, open the command prompt and run the below commands one after the other.
17+
18+
```
19+
git clone https://github.com/SyncfusionExamples/create-a-cascading-dropdown-list-using-vue-dropdown-list dropdownlist-component
20+
cd dropdownlist-component
21+
```
22+
23+
## Installing
24+
Once done with downloading, next you need to install the necessary packages required to run this application locally. The `npm install` command will install all the needed Vue packages into your current project and to do so, run the below command.
25+
26+
```
27+
npm install
28+
```
29+
30+
## Running on development server
31+
Run `npm run serve` command for a dev server. Navigate to `http://localhost:8080/`. The app will automatically reload if you change any of the source files.
32+
33+
## Further help
34+
35+
To get more help on the vue CLI use go check out the [Vue-Cli README](https://github.com/vuejs/vue-cli/blob/master/README.md).

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+
}

0 commit comments

Comments
 (0)