| 12345678910111213141516171819202122232425 |
- import { Message } from 'element-ui'
- let tools = {}
- tools.error=function(msg){
- Message({
- message: msg,
- type: 'error',
- duration: 2000
- })
- }
- tools.success=function(msg){
- Message({
- message: msg,
- type: 'success',
- duration: 2000
- })
- }
- tools.getLang=function(){
- return localStorage.getItem('lang') || 'en'
- }
- export default tools
|