juggl/src/views/Login.vue

20 lines
361 B
Vue
Raw Normal View History

2020-12-20 17:27:26 +01:00
<template>
<LayoutMinimal title="Login" width="slimmer">
2021-01-03 12:29:41 +01:00
<FormLogin />
2020-12-20 17:27:26 +01:00
</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
}
};
2021-01-03 12:29:41 +01:00
</script>