# 手动定位
```html
厉害!
```
```js
export default {
methods: {
handleClick(e) {
if (this.showPopover) {
this.showPopover = false
} else {
this.showPopover = true
this.x = e.clientX
this.y = e.clientY
}
}
},
data () {
return {
showPopover: false,
x: 0,
y: 0
}
}
}
```