# Trigger
```html
Hover! On the Green Light!
Click! On the Green Light
Oh! Manually By Myself!
```
```js
export default {
data () {
return {
hotels: [
'Marina Bay Sands, Singapore', 'Brown’s Hotel, London', 'Atlantis Bahamas, Nassau', 'The Beverly Hills Hotel, Los Angeles'
],
showDropdown: false
}
},
methods: {
handleSelect (name) {
this.$NMessage.info(name)
},
handleClick () {
this.showDropdown = !this.showDropdown
}
}
}
```
```css
.n-button {
margin: 0 8px 12px 0;
}
```