message.ts 389 B

12345678910111213
  1. import { ElMessageBox } from "element-plus";
  2. export const confirm = (msg: string, okText = "确定") =>
  3. ElMessageBox.confirm(msg, "系统提示", {
  4. type: "warning",
  5. confirmButtonText: okText,
  6. // icon: markRaw(InfoFilled),
  7. });
  8. export const alert = (msg: string) =>
  9. ElMessageBox.alert(msg, "系统提示", {
  10. type: "warning",
  11. // icon: markRaw(SuccessFilled),
  12. });