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: `
- //
- // 限时活动即将结束!
- //
- // `
- // });
- // }
});