18 lines
No EOL
319 B
Vue
18 lines
No EOL
319 B
Vue
<script setup lang="ts">
|
|
import {useAuthStore} from "@/stores/auth.store.ts";
|
|
import Header from "@/layouts/partials/Header.vue";
|
|
|
|
const auth = useAuthStore();
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<Header />
|
|
<router-link to="/login"> Take me to login page </router-link>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |