screenFront/src/utils/notification.ts
2023-05-12 16:41:33 +08:00

19 lines
455 B
TypeScript

/*
* @FilePath: \daping\src\utils\notification.ts
* @Author: 王路平
* @文件版本: V1.0.0
* @Date: 2023-02-15 08:39:08
* @Description:
*
* 版权信息 : 2023 by ${再登软件}, All Rights Reserved.
*/
import { ElNotification } from 'element-plus'
export const warningNot =(titlemsg:string,value:string)=>{
ElNotification({
title:titlemsg,
message:value,
type:'warning',
duration:10000
})
}