naive-ui/demo/documentation/components/dropdown/enUS/placement.md

31 lines
627 B
Markdown
Raw Normal View History

2019-10-22 13:48:51 +08:00
# Placement
```html
<n-dropdown @select="handleSelect" placement="bottom-start">
2019-10-22 13:48:51 +08:00
<template v-slot:activator>
<n-button>I want to go sleep!</n-button>
2019-10-22 13:48:51 +08:00
</template>
<n-dropdown-item
v-for="hotel in hotels"
:key="hotel"
:name="hotel.toLowerCase()"
2019-10-22 13:48:51 +08:00
>
{{ hotel }}
2019-10-22 13:48:51 +08:00
</n-dropdown-item>
</n-dropdown>
```
```js
export default {
data () {
return {
hotels: [
'Marina Bay Sands, Singapore', 'Browns Hotel, London', 'Atlantis Bahamas, Nassau', 'The Beverly Hills Hotel, Los Angeles'
]
2019-10-22 13:48:51 +08:00
}
},
methods: {
handleSelect (name) {
this.$NMessage.info(name)
2019-10-22 13:48:51 +08:00
}
}
}
```