Добавлена таблица клиентов и 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,11 @@
<template lang="pug">
clients-wrapper
</template>
<script>
import ClientsWrapper from "@/pages/clients/components/ClientsWrapper";
export default {
name: "TheClients",
components: { ClientsWrapper },
};
</script>