doc: update dialog (#2176)

This commit is contained in:
kooriookami 2021-06-08 14:11:33 +08:00 committed by GitHub
parent b67cf5c1f2
commit 15cacd96ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 6 deletions

View File

@ -6,7 +6,7 @@ Informs users while preserving the current page state.
Dialog pops up a dialog box, and it's quite customizable.
:::demo Set `v-model` with a `Boolean`, and Dialog shows when it is `true`. The Dialog has two parts: `body` and `footer`, and the latter requires a `slot` named `footer`. The optional `title` attribute (empty by default) is for defining a title. Finally, this example demonstrates how `before-close` is used.
:::demo Set `model-value / v-model` attribute with a `Boolean`, and Dialog shows when it is `true`. The Dialog has two parts: `body` and `footer`, and the latter requires a `slot` named `footer`. The optional `title` attribute (empty by default) is for defining a title. Finally, this example demonstrates how `before-close` is used.
```html
<el-button type="text" @click="dialogVisible = true">click to open the Dialog</el-button>

View File

@ -6,8 +6,7 @@ Informar a usuarios preservando el estado de la página actual.
Dialog abre una caja de diálogo, y es bastante personalizable.
:::demo Establezca el `v-model` con un booleano, y el Dialog se muestra cuando es `true`. El diálogo tiene dos partes: `body` y `footer`, este último requiere un slot llamado `footer`. El atributo `title` es opcional (vacío por defecto) y sirve para definir un título. Por último, este ejemplo muestra cómo se utiliza `before-close`.
:::demo Establezca el `model-value / v-model` con un booleano, y el Dialog se muestra cuando es `true`. El diálogo tiene dos partes: `body` y `footer`, este último requiere un slot llamado `footer`. El atributo `title` es opcional (vacío por defecto) y sirve para definir un título. Por último, este ejemplo muestra cómo se utiliza `before-close`.
```html
<el-button type="text" @click="dialogVisible = true">click to open the Dialog</el-button>

View File

@ -6,7 +6,7 @@ Informe les utilisateurs tout en préservant l'état de la page.
Le Dialog ouvre un modal personnalisable.
:::demo Configurez `v-model` avec un `Boolean`, un modal apparaîtra quand la valeur sera à `true`. Le Dialog possède deux parties: `body` et `footer`, ce-dernier nécessitant un `slot` appelé `footer`. L'attribut optionnel `title` (vide par défaut) définit le titre. Cet exemple montre également comment `before-close` peut être utilisé.
:::demo Configurez `model-value / v-model` avec un `Boolean`, un modal apparaîtra quand la valeur sera à `true`. Le Dialog possède deux parties: `body` et `footer`, ce-dernier nécessitant un `slot` appelé `footer`. L'attribut optionnel `title` (vide par défaut) définit le titre. Cet exemple montre également comment `before-close` peut être utilisé.
```html
<el-button type="text" @click="dialogVisible = true">Cliquez pour ouvrir le modal</el-button>

View File

@ -4,7 +4,7 @@
dialog はdialogボックスをポップアップ表示します。
:::demo `v-model` 属性に `Boolean` を設定し、それが `true` のときにdialogを表示します。dialogは `body``footer` の2つの部分からなり、後者は `footer` という名前の `スロット` を必要とします。オプションの `title` 属性 (デフォルトでは空) はタイトルを定義するためのものです。最後に、この例では `before-close` がどのように使われるかを示します。
:::demo `model-value / v-model` 属性に `Boolean` を設定し、それが `true` のときにdialogを表示します。dialogは `body``footer` の2つの部分からなり、後者は `footer` という名前の `スロット` を必要とします。オプションの `title` 属性 (デフォルトでは空) はタイトルを定義するためのものです。最後に、この例では `before-close` がどのように使われるかを示します。
```html
<el-button type="text" @click="dialogVisible = true">click to open the Dialog</el-button>

View File

@ -5,7 +5,7 @@
Dialog 弹出一个对话框,适合需要定制性更大的场景。
:::demo 需要设置 `v-model` 设置一个 `Boolean`,当为`true`时显示 Dialog。Dialog 分为两个部分:`body`和`footer``footer`需要具名为`footer`的`slot`。`title`属性用于定义标题,它是可选的,默认值为空。最后,本例还展示了`before-close`的用法。
:::demo 需要设置 `model-value / v-model` 属性,它接收 `Boolean`,当为 `true` 时显示 Dialog。Dialog 分为两个部分:`body` `footer``footer` 需要具名为 `footer` `slot`。`title` 属性用于定义标题,它是可选的,默认值为空。最后,本例还展示了 `before-close` 的用法。
```html
<el-button type="text" @click="dialogVisible = true">点击打开 Dialog</el-button>