-
+
+
+`;
+
+exports[`icon prop 1`] = `
+
+`;
+
+exports[`show html toast 1`] = `
+
+`;
+
+exports[`show loading toast 1`] = `
+
`;
diff --git a/packages/toast/test/index.spec.js b/packages/toast/test/index.spec.js
index 45aaeb25e..7e92d8941 100644
--- a/packages/toast/test/index.spec.js
+++ b/packages/toast/test/index.spec.js
@@ -11,6 +11,7 @@ test('create a forbidClick toast', async () => {
type: 'success'
});
+ await later();
expect(toast.$el.outerHTML).toMatchSnapshot();
await later();
@@ -30,6 +31,35 @@ it('toast disappeared after duration', async () => {
expect(toast.$el.style.display).toEqual('none');
});
+test('show loading toast', async () => {
+ const toast = Toast.loading({
+ message: 'Message'
+ });
+
+ await later();
+ expect(toast.$el.outerHTML).toMatchSnapshot();
+});
+
+test('show html toast', async () => {
+ const toast = Toast({
+ type: 'html',
+ message: '
Message
'
+ });
+
+ await later();
+ expect(toast.$el.outerHTML).toMatchSnapshot();
+});
+
+test('icon prop', async () => {
+ const toast = Toast({
+ message: 'Message',
+ icon: 'star-o'
+ });
+
+ await later();
+ expect(toast.$el.outerHTML).toMatchSnapshot();
+});
+
test('clear toast', () => {
const toast1 = Toast();
expect(toast1.value).toBeTruthy();
diff --git a/packages/toast/zh-CN.md b/packages/toast/zh-CN.md
index 89e846392..7b67c5a34 100644
--- a/packages/toast/zh-CN.md
+++ b/packages/toast/zh-CN.md
@@ -2,7 +2,7 @@
### 引入
-```javascript
+```js
import { Toast } from 'vant';
Vue.use(Toast);
@@ -12,13 +12,13 @@ Vue.use(Toast);
### 文字提示
-```javascript
+```js
Toast('提示内容');
```
### 加载提示
-```javascript
+```js
Toast.loading({
mask: true,
message: '加载中...'
@@ -27,14 +27,28 @@ Toast.loading({
### 成功/失败提示
-```javascript
+```js
Toast.success('成功文案');
Toast.fail('失败文案');
```
+### 自定义图标
+
+```js
+Toast({
+ text: '自定义图标',
+ icon: 'like-o'
+});
+
+Toast({
+ text: '展示图片',
+ icon: 'https://img.yzcdn.cn/vant/logo.png'
+});
+```
+
### 高级用法
-```javascript
+```js
const toast = Toast.loading({
duration: 0, // 持续展示 toast
forbidClick: true, // 禁用背景点击
@@ -102,6 +116,7 @@ toast2.clear();
| type | 提示类型,可选值为 `loading` `success`
`fail` `html` | `String` | `text` | - |
| position | 位置,可选值为 `top` `bottom` | `String` | `middle` | - |
| message | 文本内容,支持通过`\n`换行 | `String` | `''` | - | - |
+| icon | 自定义图标,支持传入图标名称或图片链接,可选值见 Icon 组件 | `String` | - | 2.0.1 |
| mask | 是否显示背景遮罩层 | `Boolean` | `false` | - |
| forbidClick | 是否禁止背景点击 | `Boolean` | `false` | - |
| loadingType | 加载图标类型, 可选值为 `spinner` | `String` | `circular` | 1.1.3 |
diff --git a/types/toast.d.ts b/types/toast.d.ts
index 0e669dcaf..3a431c3fa 100644
--- a/types/toast.d.ts
+++ b/types/toast.d.ts
@@ -4,6 +4,7 @@ import { VanPopupMixin } from './mixins/popup';
type ToastMessage = string | number;
export type ToastOptions = {
+ icon?: string;
type?: string;
mask?: boolean;
position?: string;