Ben Lin
2024-06-18 ebbd788fbb2c0b45d4473798efc57eec8ba74a25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
  <div class="m-10 auth-page">Test 角色可见</div>
</template>
<script lang="ts" setup></script>
<style lang="less" scoped>
  .auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    border-radius: 12px;
    background-color: #409efe;
    color: #fff;
    font-size: 24px;
  }
</style>