UNIVPLMDataIntegration/Web/src/views/home/widgets/components/about.vue
2024-07-16 00:41:41 +08:00

38 lines
1.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<el-card shadow="hover" header="关于项目" class="item-background">
<template #header>
<el-icon style="display: inline; vertical-align: middle"> <ele-QuestionFilled /> </el-icon>
<span style=""> 关于项目 </span>
</template>
<p>
基于 .NET6 (Furion/SqlSugar) 实现的通用权限开发框架前端采用
Vue3+Element-plus+Vite5整合众多优秀技术和框架模块插件式开发集成多租户缓存数据校验鉴权事件总线动态API通讯远程请求任务调度打印等众多黑科技代码结构简单清晰注释详尽易于上手与二次开发即便是复杂业务逻辑也能迅速实现真正实现开箱即用
</p>
<p>
<a href="https://gitee.com/zuohuaijun/Admin.NET.git" target="_blank">
<img src="https://gitee.com/zuohuaijun/Admin.NET/badge/star.svg?theme=dark" alt="star" style="vertical-align: middle" />
<img src="https://gitee.com/zuohuaijun/Admin.NET/badge/fork.svg?theme=dark" alt="fork" style="vertical-align: middle" />
<img src="https://img.shields.io/badge/license-MIT-yellow" alt="license" style="vertical-align: middle" />
</a>
</p>
</el-card>
</template>
<script lang="ts">
export default {
title: '关于项目',
icon: 'ele-Setting',
description: '点个星星支持一下',
};
</script>
<script setup lang="ts" name="about"></script>
<style scoped>
.item-background p {
color: #999;
margin-top: 10px;
line-height: 1.8;
/* height: 100px; */
}
</style>