van-popover 的show-arrow属性怎么使用
时间: 2023-10-27 07:05:54 浏览: 200
react-native-modal-popover:使用Modal的React-Native纯JS popover
`van-popover` 是一个 Vue 组件库中的弹出层组件,`show-arrow` 属性用于控制是否显示箭头。
如果您希望在使用 `van-popover` 组件时显示箭头,可以将 `show-arrow` 属性设置为 `true`。例如:
```html
<van-popover
:show-arrow="true"
:visible.sync="visible"
:actions="actions"
@select="onSelect"
>
<template #reference>
<van-button type="primary">显示弹出层</van-button>
</template>
</van-popover>
```
在上述示例中,`show-arrow` 属性被设置为 `true`,因此在弹出层组件中会显示箭头。
阅读全文