This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<template>
<div class="errorcl">登录信息错误,请重新登录</div>
</template>
<script lang="ts" setup>
import { dateEquals, ElMessage } from 'element-plus';
ElMessage.error("登录信息错误,请重新登录")
</script>
<style lang="less">
.errorcl{
font-size: 50px;
color: #fff;
text-align: center;
line-height: 500px;
}
</style>