1234567891011121314151617181920 |
- <template>
- <div class="m-10 auth-page">Super 角色可见</div>
- </template>
- <script lang="ts">
- import { defineComponent } from 'vue';
- export default defineComponent({});
- </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>
|