Skip to content

Commit 6e2733b

Browse files
authored
Added Vue ComboBox Sample for Cascading concept
1 parent f68d869 commit 6e2733b

File tree

10 files changed

+11850
-1
lines changed

10 files changed

+11850
-1
lines changed

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
1-
# create-cascading-combo-box-using-vue-combo-box
1+
# Create a Cascading ComboBox Using Vue ComboBox
2+
3+
Get a quick overview on how to create a Cascading ComboBox using Vue ComboBox of Syncfusion. You will learn how to add a series of Syncfusion Vue ComboBox to the Vue application. Also, you will see how to populate the data source of second ComboBox based on the value selected from the first ComboBox.
4+
5+
Example:https://ej2.syncfusion.com/vue/demos/#/material/combo-box/cascading.html
6+
7+
Documentation:https://ej2.syncfusion.com/vue/documentation/combo-box/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-combo-box-using-vue-combo-box` 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-combo-box-using-vue-combo-box combobox-component
20+
cd combobox-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)