12 lines
220 B
Vue
12 lines
220 B
Vue
<template lang="pug">
|
|
clients-wrapper
|
|
</template>
|
|
|
|
<script>
|
|
import ClientsWrapper from "@/pages/clients/components/ClientsWrapper";
|
|
export default {
|
|
name: "TheClients",
|
|
components: { ClientsWrapper },
|
|
};
|
|
</script>
|