| 1234567891011121314151617181920212223 |
- <script setup lang="ts">
- // 用户管理页面
- </script>
- <template>
- <div class="user-management">
- <h1>用户管理</h1>
- <p>用户管理功能开发中...</p>
- </div>
- </template>
- <style scoped lang="scss">
- .user-management {
- h1 {
- color: #fff;
- margin: 0 0 16px;
- }
- p {
- color: rgba(255, 255, 255, 0.65);
- margin: 0;
- }
- }
- </style>
|