(message, options = {})
| 66 | } |
| 67 | |
| 68 | static info(message, options = {}) { |
| 69 | ElNotification( |
| 70 | { |
| 71 | |
| 72 | title: options.title ? options.title : message, |
| 73 | showClose: true, |
| 74 | message: options.title ? message : null, |
| 75 | customClass: 'info', |
| 76 | icon: infoIcon, |
| 77 | duration: 0, |
| 78 | dangerouslyUseHTMLString: true, |
| 79 | position: 'bottom-right', |
| 80 | offset: 24, |
| 81 | ...options, |
| 82 | }, |
| 83 | ); |
| 84 | } |
| 85 | |
| 86 | static closeAll() { |
| 87 | ElNotification.closeAll(); |
no outgoing calls
no test coverage detected