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

20 lines
285 B
Vue
Raw Normal View History

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