[WIP] Исправил баг с отсутствием выбора города, фикс модального окна создания клиента

This commit is contained in:
megavrilinvv
2022-11-16 17:12:55 +03:00
parent c1010ce60f
commit 49ef6e22c3
6 changed files with 87 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
<template lang="pug">
clients-wrapper
clients-wrapper(@create-client="transmitOpenCreateForm", :is-close-header-form="isCloseHeaderForm")
</template>
<script>
@@ -7,5 +7,13 @@ import ClientsWrapper from "@/pages/clients/components/ClientsWrapper";
export default {
name: "TheClients",
components: { ClientsWrapper },
props: {
isCloseHeaderForm: Boolean,
},
methods: {
transmitOpenCreateForm(value) {
this.$emit("create-client", value);
},
},
};
</script>