From 10774301673a900783c6e4239fee629d68389cc6 Mon Sep 17 00:00:00 2001 From: xiaoxian521 <1923740402@qq.com> Date: Fri, 23 Jan 2026 11:58:12 +0800 Subject: [PATCH] chore: update --- src/App.vue | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/App.vue b/src/App.vue index 5a1e23d99..fa564c1ab 100644 --- a/src/App.vue +++ b/src/App.vue @@ -17,7 +17,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", @@ -59,23 +59,23 @@ export default defineComponent({ } ); } + }, + mounted() { + ElNotification({ + title: "高级服务", + duration: 0, + customClass: "fullpage-notification", + // @ts-expect-error + style: { width: "260px" }, + position: "bottom-right", + dangerouslyUseHTMLString: true, + message: ` + + 补差价活动即将结束! + + ` + }); } - // mounted() { - // ElNotification({ - // title: "高级服务", - // duration: 0, - // customClass: "fullpage-notification", - // // @ts-expect-error - // style: { width: "280px" }, - // position: "bottom-right", - // dangerouslyUseHTMLString: true, - // message: ` - // - // 限时活动即将结束! - // - // ` - // }); - // } });