11 lines
242 B
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>
|