chore: update

This commit is contained in:
xiaoxian521 2025-05-12 16:07:26 +08:00
parent a7f78ff1ec
commit c2ae49a2e6

View File

@ -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,23 @@ export default defineComponent({
);
}
},
mounted() {
ElNotification({
title: "限时活动",
duration: 0,
// @ts-expect-error
style: { width: "200px" },
position: "bottom-right",
dangerouslyUseHTMLString: true,
message: `
<a target='_blank' style='font-size: 16px' class='block text-center border mb-2 rounded hover:text-[red]' href='https://pure-admin.cn/pages/js/'>
JS版
</a>
<a target='_blank' style='font-size: 16px' class='block text-center border mb-2 rounded hover:text-[red]' href='https://pure-admin.cn/pages/max/'>
Max版
</a>
`
});
}
// mounted() {
// ElNotification({
// title: "",
// duration: 0,
// // @ts-expect-error
// style: { width: "200px" },
// position: "bottom-right",
// dangerouslyUseHTMLString: true,
// message: `
// <a target='_blank' style='font-size: 16px' class='block text-center border mb-2 rounded hover:text-[red]' href='https://pure-admin.cn/pages/js/'>
// JS
// </a>
// <a target='_blank' style='font-size: 16px' class='block text-center border mb-2 rounded hover:text-[red]' href='https://pure-admin.cn/pages/max/'>
// Max
// </a>
// `
// });
// }
});
</script>