ClearBowl/front/pages/login.vue

20 lines
255 B
Vue
Raw Normal View History

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