wg-gen-web/ui/src/views/Clients.vue

17 lines
216 B
Vue
Raw Normal View History

2020-01-30 06:45:49 +00:00
<template>
<v-content>
<Clients/>
2020-01-30 06:45:49 +00:00
</v-content>
</template>
<script>
import Clients from '../components/Clients'
2020-01-30 06:45:49 +00:00
export default {
name: 'clients',
components: {
Clients
}
2020-01-30 06:45:49 +00:00
}
</script>