ruoyi-plus-soybean/src/views/about/index.vue
2022-02-17 01:01:17 +08:00

14 lines
326 B
Vue

<template>
<n-space :vertical="true" :size="16">
<project-introduction />
<project-info />
<pro-dependency />
<dev-dependency />
</n-space>
</template>
<script setup lang="ts">
import { ProjectIntroduction, ProjectInfo, ProDependency, DevDependency } from './components';
</script>
<style scoped></style>