WIP Начала создание модального окна

This commit is contained in:
Daria Golova
2022-11-30 10:49:51 +03:00
parent 4aa38a61d0
commit 5ed39c0038
3 changed files with 47 additions and 1 deletions

View File

@@ -0,0 +1,39 @@
<template lang="pug">
.flex.flex-col.mb-1.mt-4
span.font-medium.text-base.modal-text.mb-3 Вы действительно хотите удалить клиента?
.flex.gap-x-3.mt-6.font-semibold
base-button(
outlined,
:size=40,
@click="closeModal"
) Отменить
base-button(
outlined-red,
:size=40,
@click="deleteEvent"
) Удалить
</template>
<script>
import BaseButton from "@/components/base/BaseButton.vue";
export default {
name: "ClientTableDeleteModal",
components: {
BaseButton,
},
props: {
closeModal: Function,
},
};
</script>
<style lang="sass" scoped>
.modal-text
color: var(--font-grey-color)
.card-container
width: 374px
height: 82px
border-radius: 4px
border: 1px solid var(--border-light-grey-color-1)
</style>