2020-11-04 10:30:14 +08:00
|
|
|
## Popconfirm
|
|
|
|
|
|
|
|
要素のクリック操作の簡単な確認ダイアログです。
|
|
|
|
|
|
|
|
### 基本的な使い方
|
|
|
|
|
|
|
|
popconfirm は ポップオーバー と似ています。そのため、重複する属性については ポップオーバー のドキュメントを参照してください。
|
|
|
|
|
|
|
|
:::demo popconfirm では `title` 属性のみが利用可能で、`content` 属性は無視されます。
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
```html
|
|
|
|
<template>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-popconfirm title="Are you sure to delete this?">
|
|
|
|
<template #reference>
|
|
|
|
<el-button>Delete</el-button>
|
|
|
|
</template>
|
2020-11-04 10:30:14 +08:00
|
|
|
</el-popconfirm>
|
|
|
|
</template>
|
2021-09-04 19:29:28 +08:00
|
|
|
```
|
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
:::
|
|
|
|
|
|
|
|
### カスタマイズ
|
2021-09-04 19:29:28 +08:00
|
|
|
|
|
|
|
popconfirm は以下のようにカスタマイズすることができます。:
|
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
|
|
|
|
<template>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-popconfirm
|
|
|
|
confirmButtonText="OK"
|
|
|
|
cancelButtonText="No, Thanks"
|
|
|
|
icon="el-icon-info"
|
|
|
|
iconColor="red"
|
|
|
|
title="Are you sure to delete this?"
|
|
|
|
>
|
|
|
|
<template #reference>
|
|
|
|
<el-button>Delete</el-button>
|
|
|
|
</template>
|
|
|
|
</el-popconfirm>
|
2020-11-04 10:30:14 +08:00
|
|
|
</template>
|
|
|
|
```
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
:::
|
|
|
|
|
2021-08-18 11:06:22 +08:00
|
|
|
### トリガーイベント
|
|
|
|
|
|
|
|
ボタンをクリックしてイベントを起動します。
|
|
|
|
|
|
|
|
:::demo
|
|
|
|
|
|
|
|
```html
|
|
|
|
<template>
|
|
|
|
<el-popconfirm
|
|
|
|
confirmButtonText="Yes"
|
|
|
|
cancelButtonText="No"
|
|
|
|
icon="el-icon-info"
|
|
|
|
iconColor="red"
|
|
|
|
title="Are you sure to delete this?"
|
|
|
|
@confirm="confirmEvent"
|
|
|
|
@cancel="cancelEvent"
|
|
|
|
>
|
|
|
|
<template #reference>
|
|
|
|
<el-button>Delete</el-button>
|
|
|
|
</template>
|
|
|
|
</el-popconfirm>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-09-04 19:29:28 +08:00
|
|
|
export default {
|
|
|
|
methods: {
|
|
|
|
confirmEvent() {
|
|
|
|
console.log('confirm!')
|
|
|
|
},
|
|
|
|
cancelEvent() {
|
|
|
|
console.log('cancel!')
|
|
|
|
},
|
2021-08-18 11:06:22 +08:00
|
|
|
},
|
2021-09-04 19:29:28 +08:00
|
|
|
}
|
2021-08-18 11:06:22 +08:00
|
|
|
</script>
|
|
|
|
```
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
### 属性
|
2021-09-04 19:29:28 +08:00
|
|
|
|
|
|
|
| Attribute | Description | Type | Accepted Values | Default |
|
|
|
|
| ----------------- | -------------------------- | ------- | --------------- | ---------------- |
|
|
|
|
| title | タイトル | String | — | — |
|
|
|
|
| confirmButtonText | 確認ボタンのテキスト | String | — | — |
|
|
|
|
| cancelButtonText | キャンセルボタンのテキスト | String | — | — |
|
|
|
|
| confirmButtonType | 確認ボタンの種類 | String | — | Primary |
|
|
|
|
| cancelButtonType | キャンセルボタンの種類 | String | — | Text |
|
|
|
|
| icon | アイコン | String | — | el-icon-question |
|
|
|
|
| iconColor | アイコンカラー | String | — | #f90 |
|
|
|
|
| hideIcon | アイコンを隠すか | Boolean | — | false |
|
2020-11-04 10:30:14 +08:00
|
|
|
|
|
|
|
### スロット
|
2021-09-04 19:29:28 +08:00
|
|
|
|
|
|
|
| Name | Description |
|
|
|
|
| --------- | ------------------------------------- |
|
|
|
|
| reference | Popconfirm をトリガーとする HTML 要素 |
|
2020-11-04 10:30:14 +08:00
|
|
|
|
|
|
|
### イベント
|
2021-09-04 19:29:28 +08:00
|
|
|
|
|
|
|
| Event Name | Description | Parameters |
|
|
|
|
| ---------- | -------------------------------------------- | ---------- |
|
|
|
|
| onConfirm | 確認ボタンをクリックするときのトリガー | — |
|
|
|
|
| onCancel | キャンセルボタンをクリックするときのトリガー | — |
|