0
0
mirror of https://github.com/vx3r/wg-gen-web.git synced 2025-04-03 16:56:52 +00:00
wg-gen-web/ui/src/views/Clients.vue

17 lines
216 B
Vue

<template>
<v-content>
<Clients/>
</v-content>
</template>
<script>
import Clients from '../components/Clients'
export default {
name: 'clients',
components: {
Clients
}
}
</script>