juggl/juggl-vue/src/views/Login.vue
2020-12-20 17:27:26 +01:00

20 lines
No EOL
398 B
Vue

<template>
<LayoutMinimal title="Login" width="slimmer">
<FormLogin/>
<b-link to="/">Go to home</b-link>
</LayoutMinimal>
</template>
<script>
// @ is an alias to /src
import LayoutMinimal from "@/components/layout/LayoutMinimal";
import FormLogin from "@/components/forms/FormLogin";
export default {
name: "Login",
components: {
LayoutMinimal,
FormLogin
}
};
</script>