Files
tps/src/App.vue
2023-07-29 22:49:32 +02:00

19 lines
342 B
Vue

<script setup lang="ts">
import FlowArticle from '@/modules/FlowArticle.vue'
import { StarportCarrier } from 'vue-starport'
</script>
<template>
<main id="main-app">
<StarportCarrier>
<FlowArticle />
</StarportCarrier>
</main>
</template>
<style scoped lang="scss">
main {
min-height: calc(100vh - 2 * 1rem);
}
</style>