# Cascade
Dropdown can be cascade.
```html
People and Some Food to Eat
```
```js
const options = [
{
label: 'Jay Gatsby',
key: 'jay gatsby'
},
{
label: 'Daisy Buchanan',
key: 'daisy buchanan'
},
{
type: 'divider'
},
{
label: 'Nick Carraway',
key: 'nick carraway'
},
{
type: 'submenu',
label: 'Others',
key: 'others',
children: [
{
label: 'Jordan Baker',
key: 'jordan baker'
},
{
label: 'Tom Buchanan',
key: 'tom buchanan'
},
{
type: 'submenu',
label: 'Others',
key: 'others',
children: [
{
label: 'Chicken',
key: 'chicken'
},
{
label: 'Beef',
key: 'beef'
}
]
}
]
}
]
export default {
data () {
return {
options
}
},
methods: {
handleSelect (name) {
this.$NMessage.info(name)
}
}
}
```