localhost-front/src/views/projectlist/TheProjectList.vue
2025-02-10 16:07:24 +09:00

11 lines
201 B
Vue

<template>
<div class="container-xxl flex-grow-1 container-p-y">
<ProjectList />
</div>
</template>
<script setup>
import ProjectList from '@c/projectlist/ProjectList.vue';
</script>