add file
This commit is contained in:
@ -1,11 +1,16 @@
|
||||
<script setup lang="ts">
|
||||
import { useAuthStore } from '@/stores/auth';
|
||||
import Icon from '@/assets/images/pln-with-text.png';
|
||||
import Hero from '@/assets/images/hero.png';
|
||||
import Button from '@/components/ButtonPrimary.vue';
|
||||
import InputText from '@/components/InputText.vue';
|
||||
import { useAuthStore } from '@/stores/auth'
|
||||
import Icon from '@/assets/images/pln-with-text.png'
|
||||
import Hero from '@/assets/images/hero.png'
|
||||
import Button from '@/components/ButtonPrimary.vue'
|
||||
import InputText from '@/components/InputText.vue'
|
||||
import { onMounted } from 'vue'
|
||||
|
||||
const authStore = useAuthStore();
|
||||
const authStore = useAuthStore()
|
||||
|
||||
onMounted(() => {
|
||||
window.document.title = `Login - ${import.meta.env.VITE_APP_NAME}`
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@ -35,7 +40,6 @@ const authStore = useAuthStore();
|
||||
<img :src="Hero" alt="logo" class="h-full" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
Reference in New Issue
Block a user