Files
sshecret/packages/sshecret-frontend/src/App.vue

11 lines
242 B
Vue

<template>
<ShowAlerts />
<RouterView />
</template>
<script setup lang="ts">
import { useAuthTokenStore } from '@/store/auth'
import ShowAlerts from '@/components/common/ShowAlerts.vue'
import { RouterView } from 'vue-router'
</script>