WIP Подключила пагинацию на клиентов

This commit is contained in:
Daria Golova
2022-11-24 17:56:26 +03:00
parent 9a5a932f69
commit 5e11928fb3
7 changed files with 72 additions and 21 deletions

View File

@@ -3,7 +3,8 @@
base-client-form-create(
v-if="isOpenForm",
:close-form="closeForm",
:current-year="currentYear"
:current-year="currentYear",
@update-client="transmitUpdateClient"
)
.flex.items-center.box-border.cursor-pointer.mr-auto
img.logo-img.mr-29_25px(src="@/assets/images/logo.svg", alt="Logo")
@@ -58,6 +59,9 @@ export default {
localStorage.clear();
this.$router.push("/login");
},
transmitUpdateClient() {
this.$emit("update-client");
},
},
};
</script>