mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
20 lines
550 B
Vue
20 lines
550 B
Vue
<template>
|
|
<n-card title="开发环境依赖" :bordered="false" size="small" class="rounded-8px 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 { pkgJson } from './model';
|
|
|
|
defineOptions({ name: 'DevDependency' });
|
|
|
|
const { devDependencies } = pkgJson;
|
|
</script>
|
|
|
|
<style scoped></style>
|