2020-11-04 10:30:14 +08:00
|
|
|
## Popover
|
|
|
|
|
|
|
|
### 基本的な使い方
|
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
Tooltip と同様に、Popover も `Vue-popper` で構築されています。そのため、重複する属性については、Tooltip のドキュメントを参照してください。
|
2020-11-04 10:30:14 +08:00
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
:::demo `trigger` 属性は、popover がどのようにトリガーされるかを定義するために使用されます: `hover`, `click`, `focus`, `manual`。それは、`#reference` という名前のスロットを使うか、`v-popover` ディレクティブを使って popover の `ref` に設定するかです。
|
2020-11-04 10:30:14 +08:00
|
|
|
|
|
|
|
```html
|
|
|
|
<template>
|
|
|
|
<el-popover
|
|
|
|
placement="top-start"
|
|
|
|
title="Title"
|
2020-11-20 23:02:15 +08:00
|
|
|
:width="200"
|
2020-11-04 10:30:14 +08:00
|
|
|
trigger="hover"
|
2020-11-20 23:02:15 +08:00
|
|
|
content="this is content, this is content, this is content"
|
|
|
|
>
|
|
|
|
<template #reference>
|
|
|
|
<el-button>Hover to activate</el-button>
|
|
|
|
</template>
|
2020-11-04 10:30:14 +08:00
|
|
|
</el-popover>
|
|
|
|
|
|
|
|
<el-popover
|
|
|
|
placement="bottom"
|
|
|
|
title="Title"
|
2020-11-20 23:02:15 +08:00
|
|
|
:width="200"
|
2020-11-04 10:30:14 +08:00
|
|
|
trigger="click"
|
2020-11-20 23:02:15 +08:00
|
|
|
content="this is content, this is content, this is content"
|
|
|
|
>
|
|
|
|
<template #reference>
|
|
|
|
<el-button>Hover to activate</el-button>
|
|
|
|
</template>
|
2020-11-04 10:30:14 +08:00
|
|
|
</el-popover>
|
|
|
|
|
|
|
|
<el-popover
|
|
|
|
ref="popover"
|
|
|
|
placement="right"
|
|
|
|
title="Title"
|
2020-11-20 23:02:15 +08:00
|
|
|
:width="200"
|
2020-11-04 10:30:14 +08:00
|
|
|
trigger="focus"
|
2020-11-20 23:02:15 +08:00
|
|
|
content="this is content, this is content, this is content"
|
|
|
|
>
|
|
|
|
<template #reference>
|
|
|
|
<el-button>Focus to activate</el-button>
|
|
|
|
</template>
|
2020-11-04 10:30:14 +08:00
|
|
|
</el-popover>
|
|
|
|
|
|
|
|
<el-popover
|
|
|
|
placement="bottom"
|
|
|
|
title="Title"
|
2020-11-20 23:02:15 +08:00
|
|
|
:width="200"
|
2020-11-04 10:30:14 +08:00
|
|
|
trigger="manual"
|
|
|
|
content="this is content, this is content, this is content"
|
2020-11-20 23:02:15 +08:00
|
|
|
v-model:visible="visible"
|
|
|
|
>
|
|
|
|
<template #reference>
|
|
|
|
<el-button @click="visible = !visible">Manual to activate</el-button>
|
|
|
|
</template>
|
2020-11-04 10:30:14 +08:00
|
|
|
</el-popover>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2021-09-04 19:29:28 +08:00
|
|
|
visible: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2020-11-04 10:30:14 +08:00
|
|
|
</script>
|
2021-06-25 16:09:42 +08:00
|
|
|
<!--
|
|
|
|
<setup>
|
|
|
|
|
|
|
|
import { defineComponent, ref } from 'vue';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
setup() {
|
|
|
|
return {
|
|
|
|
visible: ref(false),
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
</setup>
|
|
|
|
-->
|
2020-11-04 10:30:14 +08:00
|
|
|
```
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
:::
|
|
|
|
|
|
|
|
### 入れ子になっている情報
|
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
popover の中には、他のコンポーネントを入れ子にすることができます。以下はネストされたテーブルの例です。
|
2020-11-04 10:30:14 +08:00
|
|
|
|
|
|
|
:::demo `content`属性をデフォルトの`slot`に置き換えています。
|
|
|
|
|
|
|
|
```html
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-popover placement="right" :width="400" trigger="click">
|
2020-11-20 23:02:15 +08:00
|
|
|
<template #reference>
|
|
|
|
<el-button>Click to activate</el-button>
|
|
|
|
</template>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-table :data="gridData">
|
|
|
|
<el-table-column width="150" property="date" label="date"></el-table-column>
|
|
|
|
<el-table-column width="100" property="name" label="name"></el-table-column>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-table-column
|
|
|
|
width="300"
|
|
|
|
property="address"
|
|
|
|
label="address"
|
|
|
|
></el-table-column>
|
2020-11-04 10:30:14 +08:00
|
|
|
</el-table>
|
|
|
|
</el-popover>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2021-09-04 19:29:28 +08:00
|
|
|
gridData: [
|
|
|
|
{
|
|
|
|
date: '2016-05-02',
|
|
|
|
name: 'Jack',
|
|
|
|
address: 'New York City',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: '2016-05-04',
|
|
|
|
name: 'Jack',
|
|
|
|
address: 'New York City',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: '2016-05-01',
|
|
|
|
name: 'Jack',
|
|
|
|
address: 'New York City',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: '2016-05-03',
|
|
|
|
name: 'Jack',
|
|
|
|
address: 'New York City',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2020-11-04 10:30:14 +08:00
|
|
|
</script>
|
2021-06-25 16:09:42 +08:00
|
|
|
<!--
|
|
|
|
<setup>
|
|
|
|
|
|
|
|
import { defineComponent, reactive, toRefs } from 'vue';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
setup() {
|
|
|
|
const state = reactive({
|
|
|
|
gridData: [
|
|
|
|
{
|
|
|
|
date: '2016-05-02',
|
|
|
|
name: 'Jack',
|
|
|
|
address: 'New York City',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: '2016-05-04',
|
|
|
|
name: 'Jack',
|
|
|
|
address: 'New York City',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: '2016-05-01',
|
|
|
|
name: 'Jack',
|
|
|
|
address: 'New York City',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: '2016-05-03',
|
|
|
|
name: 'Jack',
|
|
|
|
address: 'New York City',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
|
|
|
return {
|
|
|
|
...toRefs(state),
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
</setup>
|
|
|
|
-->
|
2020-11-04 10:30:14 +08:00
|
|
|
```
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
:::
|
|
|
|
|
|
|
|
### 入れ子になった操作
|
|
|
|
|
|
|
|
もちろん、他の操作をネストすることもできます。ダイアログを使うよりも軽量です。
|
|
|
|
|
|
|
|
:::demo
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
```html
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-popover placement="top" :width="160" v-model:visible="visible">
|
2020-11-04 10:30:14 +08:00
|
|
|
<p>Are you sure to delete this?</p>
|
|
|
|
<div style="text-align: right; margin: 0">
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-button size="mini" type="text" @click="visible = false"
|
|
|
|
>cancel</el-button
|
|
|
|
>
|
|
|
|
<el-button type="primary" size="mini" @click="visible = false"
|
|
|
|
>confirm</el-button
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
</div>
|
2020-11-20 23:02:15 +08:00
|
|
|
<template #reference>
|
|
|
|
<el-button @click="visible = true">Delete</el-button>
|
|
|
|
</template>
|
2020-11-04 10:30:14 +08:00
|
|
|
</el-popover>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2021-09-04 19:29:28 +08:00
|
|
|
visible: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2020-11-04 10:30:14 +08:00
|
|
|
</script>
|
2021-06-25 16:09:42 +08:00
|
|
|
<!--
|
|
|
|
<setup>
|
|
|
|
|
|
|
|
import { defineComponent, ref } from 'vue';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
setup() {
|
|
|
|
return {
|
|
|
|
visible: ref(false),
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
</setup>
|
|
|
|
-->
|
2020-11-04 10:30:14 +08:00
|
|
|
```
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
:::
|
|
|
|
|
|
|
|
### 属性
|
2021-09-04 19:29:28 +08:00
|
|
|
|
|
|
|
| Attribute | Description | Type | Accepted Values | Default |
|
|
|
|
| ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ | -------------- | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------- |
|
|
|
|
| trigger | popover がどのようにトリガーされるか | string | click/focus/hover/manual | click |
|
|
|
|
| title | popover のタイトル | string | — | — |
|
|
|
|
| content | popover コンテンツ、デフォルトの `slot` で置き換えることができます。 | string | — | — |
|
|
|
|
| width | popover 幅 | string, number | — | Min width 150px |
|
|
|
|
| placement | popover 配置 | string | top/top-start/top-end/bottom/bottom-start/bottom-end/left/left-start/left-end/right/right-start/right-end | bottom |
|
|
|
|
| disabled | popover が無効になっているかどうか | boolean | — | false |
|
|
|
|
| visible / v-model:visible | popover が表示されているかどうか | Boolean | — | false |
|
|
|
|
| offset | popover オフセット | number | — | 0 |
|
|
|
|
| transition | popover トランジションアニメーション | string | — | el-fade-in-linear |
|
|
|
|
| show-arrow | ツールチップの矢印が表示されているかどうかを指定します。詳細については [Vue-popper](https://github.com/element-component/vue-popper) | boolean | — | true |
|
|
|
|
| popper-options | [popper.js](https://popper.js.org/documentation.html) のためのパラメータ | object | please refer to [popper.js](https://popper.js.org/documentation.html) | `{ boundariesElement: 'body', gpuAcceleration: false }` |
|
|
|
|
| popper-class | popover 用カスタムクラス名 | string | — | — |
|
|
|
|
| show-after | ミリ秒単位の出現の遅延 | number | — | 0 |
|
|
|
|
| hide-after | ミリ秒単位の消えるの遅延 | number | — | 0 |
|
|
|
|
| auto-close | ツールチップを非表示にするタイムアウト(ミリ秒単位) | number | — | 0 |
|
|
|
|
| tabindex | [tabindex](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) の popover | number | — | — |
|
2020-11-04 10:30:14 +08:00
|
|
|
|
|
|
|
### スロット
|
2021-09-04 19:29:28 +08:00
|
|
|
|
|
|
|
| Name | Description |
|
|
|
|
| --------- | -------------------------------- |
|
|
|
|
| — | popover のテキストコンテンツ |
|
|
|
|
| reference | popover をトリガーする HTML 要素 |
|
2020-11-04 10:30:14 +08:00
|
|
|
|
|
|
|
### イベント
|
2021-09-04 19:29:28 +08:00
|
|
|
|
|
|
|
| Event Name | Description | Parameters |
|
|
|
|
| ----------- | -------------------------------------------- | ---------- |
|
|
|
|
| show | popover が表示されたときにトリガー | — |
|
|
|
|
| after-enter | 入力トランジションの終了時にトリガされます。 | — |
|
|
|
|
| hide | popover が非表示になったときにトリガー | — |
|
|
|
|
| after-leave | 離脱トランジション終了時のトリガー | — |
|