Files
tps/src/App.vue
2024-12-22 18:31:31 +01:00

19 lines
354 B
Vue

<script setup lang="ts">
import FlowArticle from '@/modules/pull-system/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>