index.vue 361 B

1234567891011121314151617181920212223
  1. <script setup lang="ts">
  2. // 用户管理页面
  3. </script>
  4. <template>
  5. <div class="user-management">
  6. <h1>用户管理</h1>
  7. <p>用户管理功能开发中...</p>
  8. </div>
  9. </template>
  10. <style scoped lang="scss">
  11. .user-management {
  12. h1 {
  13. color: #fff;
  14. margin: 0 0 16px;
  15. }
  16. p {
  17. color: rgba(255, 255, 255, 0.65);
  18. margin: 0;
  19. }
  20. }
  21. </style>