# 显示在指定区域
```html
上
右
下
左
斯通纳
《斯通纳》是美国作家约翰·威廉姆斯在 1965 年出版的小说。
```
```js
export default {
data () {
return {
active: false,
placement: 'right'
}
},
methods: {
activate (placement) {
this.active = true
this.placement = placement
},
target () {
return this.$refs.test
}
}
}
```