14 lines
338 B
Vue
14 lines
338 B
Vue
<script setup lang="ts">
|
|
import ModalWrapper from './components/ModalWrapper.vue';
|
|
|
|
</script>
|
|
<template>
|
|
<RouterView></RouterView>
|
|
|
|
<!-- Global alert modal used by util/alert.ts -->
|
|
<ModalWrapper id="global-alert-modal">
|
|
<p id="global-alert-modal-text">This is an alert!</p>
|
|
</ModalWrapper>
|
|
</template>
|
|
<style scoped></style>
|