mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
80 lines
1.8 KiB
Markdown
80 lines
1.8 KiB
Markdown
# Manually Positioned
|
|
For some special case, you may want to manually position the dropdown. For example, right click to activate dropdown in some area.
|
|
```html
|
|
<div style="width: 200px; height: 200px; background-color: rgba(0, 128, 0, .5);" @contextmenu="handleContextMenu">
|
|
Right Click
|
|
</div>
|
|
<n-dropdown
|
|
placement="bottom-start"
|
|
trigger="manual"
|
|
manually-positioned
|
|
@select="handleSelect"
|
|
@blur="handleBlur"
|
|
:x="x"
|
|
:y="y"
|
|
v-model="showDropdown"
|
|
>
|
|
<n-dropdown-item name="jay gatsby">
|
|
Jay Gatsby
|
|
</n-dropdown-item>
|
|
<n-dropdown-item name="daisy buchanan">
|
|
Daisy Buchanan
|
|
</n-dropdown-item>
|
|
<n-dropdown-divider />
|
|
<n-dropdown-item name="nick carraway">
|
|
Nick Carraway
|
|
</n-dropdown-item>
|
|
<n-dropdown-submenu>
|
|
<template v-slot:activator>
|
|
Others
|
|
</template>
|
|
<n-dropdown-item name="jordan baker">
|
|
Jordan Baker
|
|
</n-dropdown-item>
|
|
<n-dropdown-divider />
|
|
<n-dropdown-item name="tom buchanan">
|
|
Tom Buchanan
|
|
</n-dropdown-item>
|
|
<n-dropdown-submenu>
|
|
<template v-slot:activator>
|
|
Others
|
|
</template>
|
|
<n-dropdown-item name="chicken">
|
|
Chicken
|
|
</n-dropdown-item>
|
|
<n-dropdown-item name="beef">
|
|
Beef
|
|
</n-dropdown-item>
|
|
</n-dropdown-submenu>
|
|
</n-dropdown-submenu>
|
|
</n-dropdown>
|
|
```
|
|
```js
|
|
export default {
|
|
methods: {
|
|
handleSelect (name) {
|
|
this.showDropdown = false
|
|
this.$NMessage.info(name)
|
|
},
|
|
handleBlur () {
|
|
this.showDropdown = false
|
|
},
|
|
handleContextMenu (e) {
|
|
e.preventDefault()
|
|
this.showDropdown = false
|
|
this.$nextTick().then(() => {
|
|
this.showDropdown = true
|
|
this.x = e.clientX
|
|
this.y = e.clientY
|
|
})
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
showDropdown: false,
|
|
x: 0,
|
|
y: 0
|
|
}
|
|
}
|
|
}
|
|
``` |