# Trigger Different trigger of dropdown. ```html Hover! On the Green Light! Click! On the Green Light Oh! Manually By Myself! ``` ```js export default { data () { return { options: [ { label: 'Marina Bay Sands', key: 'Marina Bay Sands' }, { label: 'Brown\'s Hotel, London', key: 'Brown\'s Hotel, London' }, { label: 'Atlantis Bahamas, Nassau', key: 'Atlantis Bahamas, Nassau' }, { label: 'The Beverly Hills Hotel, Los Angeles', key: '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; } ```