mirror of
https://github.com/vx3r/wg-gen-web.git
synced 2025-04-03 16:56:52 +00:00
17 lines
216 B
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>
|