Files
geo/apps/ops-web/src/App.vue
T

20 lines
325 B
Vue
Raw Normal View History

<template>
<a-config-provider>
<a-app>
<router-view />
</a-app>
</a-config-provider>
</template>
<script setup lang="ts">
import { onMounted } from "vue";
import { useAuthStore } from "@/stores/auth";
const auth = useAuthStore();
onMounted(() => {
if (!auth.initialized) auth.hydrate();
});
</script>