|
|
@@ -16,11 +16,14 @@ section.pairs-list
|
|
16
|
16
|
h3 {{ pair.profile.name }} {{ pair.profile.pid }}
|
|
17
|
17
|
p registered nurse
|
|
18
|
18
|
|
|
19
|
|
- w-button.menu-button(icon="mdi mdi-menu" xl)
|
|
|
19
|
+ w-menu(shadow v-model="showMenu")
|
|
|
20
|
+ template(#activator)
|
|
|
21
|
+ w-button.mr3(@click="showMenu = true") menu
|
|
|
22
|
+ w-flex.pl10.mt4(wrap justify-end)
|
|
|
23
|
+ w-button.mr1(text color="green" @click="showMenu = false") Chat
|
|
|
24
|
+ w-button.mr1(text color="green" @click="showMenu = false") Calendar
|
|
|
25
|
+ w-button(text color="green" @click="showMenu = false") cancel
|
|
20
|
26
|
|
|
21
|
|
- w-menu(activator=".menu-button" arrow right)
|
|
22
|
|
- w-image(:src="'../../../assets/icons/chat.svg'" :width="20" :height="20").chat
|
|
23
|
|
- w-image(:src="'../../../assets/icons/calendar.svg'" :width="20" :height="20").calendar
|
|
24
|
27
|
p(v-else) No {{ tabName }} profiles.
|
|
25
|
28
|
</template>
|
|
26
|
29
|
|
|
|
@@ -36,6 +39,8 @@ const props = defineProps({
|
|
36
|
39
|
},
|
|
37
|
40
|
})
|
|
38
|
41
|
|
|
|
42
|
+
|
|
|
43
|
+
|
|
39
|
44
|
</script>
|
|
40
|
45
|
|
|
41
|
46
|
<style lang="sass">
|