diff --git a/packages/toast/Toast.js b/packages/toast/Toast.js index 1b9705d41..6a107e52f 100644 --- a/packages/toast/Toast.js +++ b/packages/toast/Toast.js @@ -64,7 +64,7 @@ export default sfc({ }, render(h) { - const { type, message } = this; + const { type, message, loadingType } = this; const style = STYLE.indexOf(type) !== -1 ? 'default' : type; function Content() { @@ -77,7 +77,7 @@ export default sfc({ return [ type === 'loading' ? ( - + ) : ( ),