1
1
Fork 0
mirror of https://github.com/vx3r/wg-gen-web.git synced 2024-05-28 02:06:03 +02:00
wg-gen-web/ui/src/views/Status.vue

17 lines
211 B
Vue

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