AuthPageA.vue 429 B

12345678910111213141516171819
  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. height: 300px;
  12. font-size: 24px;
  13. color: #fff;
  14. background-color: #409efe;
  15. border-radius: 12px;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. </style>