mirror of
https://github.com/palxiao/poster-design.git
synced 2025-07-03 03:56:41 +08:00
22 lines
493 B
TypeScript
22 lines
493 B
TypeScript
/*
|
|
* @Author: ShawnPhang
|
|
* @Date: 2021-09-30 16:28:40
|
|
* @Description: 弹出提示
|
|
* @LastEditors: ShawnPhang
|
|
* @LastEditTime: 2022-01-20 18:19:20
|
|
*/
|
|
import { ElNotification } from 'element-plus'
|
|
|
|
interface ElNotifi {
|
|
type?: 'success' | 'warning' | 'info' | 'error' | ''
|
|
position?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'
|
|
}
|
|
|
|
export default (title: string, message: string = '', extra?: ElNotifi) => {
|
|
ElNotification({
|
|
title,
|
|
message,
|
|
...extra,
|
|
})
|
|
}
|