ClearBowl/front/pages/register.vue

20 lines
273 B
Vue
Raw Normal View History

<template>
<RegisterForm/>
</template>
<script>
2019-12-05 11:23:34 +01:00
import RegisterForm from "../components/Auth/RegisterForm";
export default {
name: "register",
auth: 'guest',
components: {
'RegisterForm': RegisterForm
}
}
</script>
<style scoped>
</style>