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

@@ -2,8 +2,10 @@
.wrapper.flex.w-full.relative.mx-2
clients-table(
:open-form="openForm",
:is-open-form="isOpenForm"
:current-year="currentYear"
:is-open-form="isOpenForm",
:current-year="currentYear",
:updated-clients="updatedClients",
@reset-updated-clients="transmitReset"
)
</template>
@@ -16,6 +18,12 @@ export default {
openForm: Function,
currentYear: Number,
isOpenForm: Boolean,
updatedClients: Boolean,
},
methods: {
transmitReset() {
this.$emit("reset-updated-clients");
},
},
};
</script>