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

17 lines
210 B
Vue
Raw Normal View History

2020-01-30 06:45:49 +00:00
<template>
2021-04-06 12:23:23 +00:00
<v-main>
<Clients/>
2021-04-06 12:23:23 +00:00
</v-main>
2020-01-30 06:45:49 +00:00
</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>