mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-21 02:56:38 +08:00
19 lines
609 B
Vue
19 lines
609 B
Vue
<template>
|
|
<shadow-card class="p-18px !rounded-4px">
|
|
<h3 class="pb-18px text-16px font-semibold">开发环境依赖</h3>
|
|
<n-descriptions label-placement="left" bordered size="small">
|
|
<n-descriptions-item v-for="item in dependencies" :key="item.name" :label="item.name">
|
|
{{ item.version }}
|
|
</n-descriptions-item>
|
|
</n-descriptions>
|
|
</shadow-card>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { NDescriptions, NDescriptionsItem } from 'naive-ui';
|
|
import { packageVersion } from '@/utils';
|
|
|
|
const dependencies = packageVersion.devDependencies;
|
|
</script>
|
|
<style scoped></style>
|