13 lines
238 B
Vue
13 lines
238 B
Vue
<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>
|