UsersView.vue 572 B

12345678910111213141516171819
  1. <template>
  2. <div class="page">
  3. <div class="page-header">
  4. <h1>Users</h1>
  5. <p>Manage organization users</p>
  6. </div>
  7. <div class="content">
  8. <p>Users list will be here...</p>
  9. </div>
  10. </div>
  11. </template>
  12. <style scoped>
  13. .page { padding: 32px; }
  14. .page-header { margin-bottom: 32px; }
  15. .page-header h1 { font-size: 32px; font-weight: 700; color: #1a202c; margin-bottom: 8px; }
  16. .page-header p { color: #718096; font-size: 16px; }
  17. .content { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
  18. </style>