docs(Popover): add select event demo

This commit is contained in:
chenjiahan 2020-11-20 11:08:02 +08:00 committed by neverland
parent 27ed9d1fb7
commit 1999195c46
3 changed files with 27 additions and 2 deletions

View File

@ -14,7 +14,7 @@ Vue.use(Popover);
### Basic Usage
```html
<van-popover v-model="showPopover" :actions="actions">
<van-popover v-model="showPopover" :actions="actions" @select="onSelect">
<template #reference>
<van-button type="primary" @click="showPopover = true">
Light Theme
@ -24,6 +24,8 @@ Vue.use(Popover);
```
```js
import { Toast } from 'vant';
export default {
data() {
return {
@ -35,6 +37,11 @@ export default {
],
};
},
methods: {
onSelect(action) {
Toast(action.text);
},
},
};
```

View File

@ -20,7 +20,7 @@ Vue.use(Popover);
当 Popover 弹出时,会基于 `reference` 插槽的内容进行定位。
```html
<van-popover v-model="showPopover" :actions="actions">
<van-popover v-model="showPopover" :actions="actions" @select="onSelect">
<template #reference>
<van-button type="primary" @click="showPopover = true">
浅色风格
@ -30,6 +30,8 @@ Vue.use(Popover);
```
```js
import { Toast } from 'vant';
export default {
data() {
return {
@ -38,6 +40,11 @@ export default {
actions: [{ text: '选项一' }, { text: '选项二' }, { text: '选项三' }],
};
},
methods: {
onSelect(action) {
Toast(action.text);
},
},
};
```

View File

@ -6,6 +6,7 @@
:actions="t('actions')"
placement="bottom-start"
style="margin-left: 16px;"
@select="onSelect"
>
<template #reference>
<van-button type="primary" @click="show.lightTheme = true">
@ -18,6 +19,7 @@
theme="dark"
:actions="t('actions')"
style="margin-left: 16px;"
@select="onSelect"
>
<template #reference>
<van-button type="primary" @click="show.darkTheme = true">
@ -48,6 +50,7 @@
theme="dark"
:actions="t('shortActions')"
:placement="currentPlacement"
@select="onSelect"
>
<template #reference>
<div class="demo-popover-refer" />
@ -64,6 +67,7 @@
:actions="t('actionsWithIcon')"
placement="bottom-start"
style="margin-left: 16px;"
@select="onSelect"
>
<template #reference>
<van-button type="primary" @click="show.showIcon = true">
@ -76,6 +80,7 @@
v-model="show.disableAction"
:actions="t('actionsDisabled')"
style="margin-left: 16px;"
@select="onSelect"
>
<template #reference>
<van-button type="primary" @click="show.disableAction = true">
@ -90,6 +95,7 @@
v-model="show.customContent"
placement="top-start"
style="margin-left: 16px;"
@select="onSelect"
>
<van-grid
square
@ -117,6 +123,8 @@
</template>
<script>
import Toast from '../../toast';
export default {
i18n: {
'zh-CN': {
@ -207,6 +215,9 @@ export default {
this.currentPlacement = value;
});
},
onSelect(action) {
Toast(action.text);
},
},
};
</script>