diff --git a/src/App.vue b/src/App.vue
index d422aed29..f8072ab96 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -54,23 +54,23 @@ export default defineComponent({
}
);
}
+ },
+ mounted() {
+ ElNotification({
+ title: "高级服务",
+ duration: 0,
+ customClass: "fullpage-notification",
+ // @ts-expect-error
+ style: { width: "200px" },
+ position: "bottom-right",
+ dangerouslyUseHTMLString: true,
+ message: `
+
+ 点我查看
+
+ `
+ });
}
- // mounted() {
- // ElNotification({
- // title: "平台最新活动与动态",
- // duration: 0,
- // customClass: "fullpage-notification",
- // // @ts-expect-error
- // style: { width: "260px" },
- // position: "bottom-right",
- // dangerouslyUseHTMLString: true,
- // message: `
- //
- // 点我查看
- //
- // `
- // });
- // }
});