24 lines
429 B
Vue
24 lines
429 B
Vue
<script setup>
|
|
import {RouterLink, RouterView, useRoute} from 'vue-router'
|
|
|
|
import {storeToRefs} from 'pinia';
|
|
import {useAuthStore} from '@/stores/auth';
|
|
import router from '@/router';
|
|
import Errors from '@/components/Errors.vue'
|
|
import {ref} from 'vue';
|
|
|
|
const authStr = useAuthStore()
|
|
|
|
const {auth} = storeToRefs(authStr)
|
|
</script>
|
|
|
|
<template>
|
|
<RouterView/>
|
|
</template>
|
|
|
|
<style>
|
|
footer {
|
|
padding: 2rem 0;
|
|
}
|
|
</style>
|