Files
tps/src/App.vue
2026-01-02 00:09:58 +01:00

19 lines
358 B
Vue

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