ruoyi-plus-soybean/src/views/about/index.vue

14 lines
326 B
Vue
Raw Normal View History

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