mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
18 lines
576 B
Vue
18 lines
576 B
Vue
<template>
|
|
<n-card title="开发环境依赖" :bordered="false" size="small" class="rounded-16px shadow-sm">
|
|
<n-descriptions label-placement="left" bordered size="small">
|
|
<n-descriptions-item v-for="item in devDependencies" :key="item.name" :label="item.name">
|
|
{{ item.version }}
|
|
</n-descriptions-item>
|
|
</n-descriptions>
|
|
</n-card>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { NCard, NDescriptions, NDescriptionsItem } from 'naive-ui';
|
|
import { pkgJson } from '../model';
|
|
|
|
const { devDependencies } = pkgJson;
|
|
</script>
|
|
<style scoped></style>
|