16 lines
No EOL
203 B
Vue
16 lines
No EOL
203 B
Vue
<script lang="ts" setup>
|
|
import LoginForm from "~/components/forms/auth/login-form.vue";
|
|
|
|
definePageMeta({
|
|
layout: 'auth'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<login-form/>
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |