docs: fix placement typo (#13222)

This commit is contained in:
binaryify 2024-11-24 19:48:08 +08:00 committed by GitHub
parent e46ad73d9d
commit 52b5989acd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -248,7 +248,7 @@ You can use Popover as a controlled or uncontrolled component:
- When `v-model:show` is not used, Popover is an uncontrolled component. You can pass in a default value through the `show` prop, and the display is controlled by the component itself.
```html
<van-popover :actions="actions" position="top-start" @select="onSelect">
<van-popover :actions="actions" placement="top-start" @select="onSelect">
<template #reference>
<van-button type="primary">Uncontrolled</van-button>
</template>

View File

@ -258,7 +258,7 @@ export default {
- 当未绑定 `v-model:show`Popover 为非受控组件,此时你可以通过 `show` 属性传入一个默认值,组件值的显示由组件自身控制。
```html
<van-popover :actions="actions" position="top-start" @select="onSelect">
<van-popover :actions="actions" placement="top-start" @select="onSelect">
<template #reference>
<van-button type="primary">非受控模式</van-button>
</template>