13 lines
166 B
Vue
13 lines
166 B
Vue
|
|
<script lang="ts" setup>
|
||
|
|
|
||
|
|
import LoginForm from "~/components/forms/auth/login-form.vue";
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<login-form/>
|
||
|
|
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
|
||
|
|
</style>
|