feat: Implement instructor module with course management pages and API services.
This commit is contained in:
parent
07ab43a785
commit
a24f8c4982
6 changed files with 135 additions and 27 deletions
|
|
@ -15,9 +15,15 @@
|
|||
<div class="text-xs text-gray-500">{{ authStore.user?.role || 'INSTRUCTOR' }}</div>
|
||||
</div>
|
||||
<div
|
||||
class="w-12 h-12 bg-primary-100 rounded-full flex items-center justify-center text-2xl cursor-pointer hover:bg-primary-200 transition"
|
||||
class="w-12 h-12 bg-primary-100 rounded-full flex items-center justify-center text-2xl cursor-pointer hover:bg-primary-200 transition overflow-hidden"
|
||||
>
|
||||
<q-icon name="person" />
|
||||
<img
|
||||
v-if="authStore.user?.avatarUrl"
|
||||
:src="authStore.user.avatarUrl"
|
||||
alt=""
|
||||
class="w-full h-full object-cover"
|
||||
/>
|
||||
<q-icon v-else name="person" />
|
||||
<q-menu>
|
||||
<q-list style="min-width: 200px">
|
||||
<!-- User Info Header -->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue