Some checks failed
Gitea Actions Demo / build-and-push (push) Failing after 6s
19 lines
289 B
Vue
19 lines
289 B
Vue
<template>
|
|
<BackendEventsListener />
|
|
<router-view />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import BackendEventsListener from '@/components/BackendEventsListener.vue'
|
|
import { checkAuth } from '@/stores/auth'
|
|
|
|
checkAuth()
|
|
</script>
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
</style>
|