[WIP] Добавил хедер и формы Состояния здоровья

This commit is contained in:
DwCay
2023-06-23 19:36:16 +03:00
parent 7586952066
commit a1af8d196f
6 changed files with 123 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
<template lang="pug">
.header.flex.w-full.rounded.justify-between.items-center.py-5.pl-6.pr-5
.span.text-2xl.font-bold Карты здоровья
q-btn(
color="primary",
no-caps
)
q-icon.mr-2(size="20px" name="add")
span Добавить запись
</template>
<script>
export default {
name: "HealthStateHeader",
};
</script>
<style lang="sass" scoped>
.header
background-color: var(--default-white)
.add
& .q-icon
display: none
</style>