13 lines
404 B
Vue
13 lines
404 B
Vue
<script setup lang="ts">
|
|
import GlobalAlertModal from './components/GlobalAlertModal.vue';
|
|
import GlobalLoadingOverlay from './components/GlobalLoadingOverlay.vue';
|
|
</script>
|
|
<template>
|
|
<RouterView></RouterView>
|
|
|
|
<!-- Global alert modal used by util/alert.ts -->
|
|
<GlobalAlertModal id="global-alert-modal" />
|
|
<GlobalLoadingOverlay id="global-loading-overlay" />
|
|
</template>
|
|
<style scoped></style>
|