WIP Удалены BaseButtons

This commit is contained in:
Daria Golova
2023-01-19 18:18:54 +03:00
parent 76ca19ff4e
commit b53c433771
25 changed files with 224 additions and 147 deletions

View File

@@ -9,17 +9,22 @@
placeholder="Описание",
v-model="description"
)
.flex
base-button(:size="40", @click="sendNote") Добавить
q-btn(
label="Добавить",
no-caps,
color="primary",
padding="4px 24px",
@click="sendNote",
style="font-weight: 500; height: 40px; width: 122px"
)
</template>
<script>
import BaseButton from "@/components/base/BaseButton";
import BaseInput from "@/components/base/BaseInput";
export default {
name: "TableCreateNote",
components: { BaseButton, BaseInput },
components: { BaseInput },
props: {
createNote: Function,
closePopup: Function,