Files
chore/frontend/vue-app/src/App.vue
Ryan Kegel a0a059472b
Some checks failed
Gitea Actions Demo / build-and-push (push) Failing after 6s
Moved things around
2026-01-21 17:18:58 -05:00

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>