From fe7d67af0d4e7ffdf25aa8afb00a8da43332e060 Mon Sep 17 00:00:00 2001 From: xiaoxian521 <1923740402@qq.com> Date: Tue, 27 May 2025 14:30:44 +0800 Subject: [PATCH] chore: update --- src/App.vue | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/src/App.vue b/src/App.vue index 1a527be75..728d57b05 100644 --- a/src/App.vue +++ b/src/App.vue @@ -16,7 +16,7 @@ import en from "element-plus/es/locale/lang/en"; import zhCn from "element-plus/es/locale/lang/zh-cn"; import plusEn from "plus-pro-components/es/locale/lang/en"; import plusZhCn from "plus-pro-components/es/locale/lang/zh-cn"; -// import { ElNotification } from "element-plus"; +import { ElNotification } from "element-plus"; export default defineComponent({ name: "app", @@ -55,23 +55,20 @@ export default defineComponent({ ); } }, - // mounted() { - // ElNotification({ - // title: "限时活动", - // duration: 0, - // // @ts-expect-error - // style: { width: "200px" }, - // position: "bottom-right", - // dangerouslyUseHTMLString: true, - // message: ` - // - // JS版本 - // - // - // Max版本 - // - // ` - // }); - // } + mounted() { + ElNotification({ + title: "高级服务", + duration: 0, + // @ts-expect-error + style: { width: "200px" }, + position: "bottom-right", + dangerouslyUseHTMLString: true, + message: ` + + 点我查看 + + ` + }); + } });