AuthPageA.vue 428 B

1234567891011121314151617181920
  1. <template>
  2. <div class="m-10 auth-page">Super 角色可见</div>
  3. </template>
  4. <script lang="ts">
  5. import { defineComponent } from 'vue';
  6. export default defineComponent({});
  7. </script>
  8. <style lang="less" scoped>
  9. .auth-page {
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. height: 300px;
  14. border-radius: 12px;
  15. background-color: #409efe;
  16. color: #fff;
  17. font-size: 24px;
  18. }
  19. </style>