aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/App.vue
blob: 92b8d5cf6ece9963c1839e405a2dbb00c54c7469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
  <!-- Import environment component top level as the entrypoint -->
  <Environment>
    <template #main>
      <router-view />
    </template>
  </Environment>
 
</template>

<script setup lang="ts">
import Environment from './bootstrap/Environment.vue';

</script>