Добавлена таблица клиентов и popup окно для удаления и редактирования клиента

This commit is contained in:
DwCay
2022-10-13 04:11:02 +03:00
parent f83c262e4c
commit f5e948d0b4
13 changed files with 273 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
<template lang="pug">
.flex.w-full.mx-6
clients-table
</template>
<script>
import ClientsTable from "@/pages/clients/components/ClientsTable";
export default {
name: "ClientsWrapper",
components: { ClientsTable },
};
</script>
<style lang="sass" scoped></style>