chore(Dialog): rename round theme to round-button

This commit is contained in:
chenjiahan
2020-08-03 21:31:40 +08:00
parent 9e86cfbdd8
commit c72927f404
4 changed files with 16 additions and 13 deletions
+4 -4
View File
@@ -30,22 +30,22 @@ Dialog.alert({
});
```
### Round Style
### Round Button Style
use round style.
Use round button style.
```js
Dialog.alert({
title: 'Title',
message: 'Content',
theme: 'round',
theme: 'round-button',
}).then(() => {
// on close
});
Dialog.alert({
message: 'Content',
theme: 'round',
theme: 'round-button',
}).then(() => {
// on close
});