WIP Сделала кнопку добавления

This commit is contained in:
Daria Golova
2023-04-28 12:25:18 +03:00
parent 6f86c50017
commit 430ac66273
4 changed files with 50 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
<template lang="pug">
.list-wrapper.h-full.flex.gap-y-1.flex-col
.p-4.rounded.background
q-btn(
color="primary",
size="16px",
label="Создать осмотр",
no-caps,
icon="add",
:style="{width: '100%'}"
)
.p-4.rounded.background.h-full
base-select
</template>
<script>
import BaseSelect from "@/components/base/BaseSelect.vue";
export default {
name: "MedicalProtocolsList",
components: { BaseSelect },
};
</script>
<style lang="sass" scoped>
.list-wrapper
width: 19.6%
.background
background-color: var(--default-white)
</style>