You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
364 B
Vue

This file contains ambiguous Unicode characters!

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>