WIP Сделано модальное окно, начат overlay

This commit is contained in:
Daria Golova
2022-11-30 16:01:04 +03:00
parent 5ed39c0038
commit 8dbfff1a10
6 changed files with 162 additions and 100 deletions

View File

@@ -8,7 +8,7 @@
.button.keep-redaction.flex.gap-x-3
.icon-star-off.icon
span На ведение
.button.delete.flex.gap-x-3(@click="deleteClient")
.button.delete.flex.gap-x-3(@click="transmitDeleteClient")
.icon-basket.icon-delete
span Удалить
</template>
@@ -18,7 +18,11 @@ export default {
name: "ClientsActionPopup",
props: {
openChangeData: Function,
deleteClient: Function,
},
methods: {
transmitDeleteClient() {
this.$emit("delete-client");
},
},
};
</script>