9 lines
158 B
Vue
9 lines
158 B
Vue
<script setup lang="ts">
|
|
import SummaryComponent from '@/components/SummaryComponent.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<NavBar/>
|
|
<SummaryComponent/>
|
|
</template>
|