factory_web/src/views/home/widgets/components/about.vue

28 lines
713 B
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">
<p>高性能 / 精致 / 优雅基于Vue3 + Element-Plus 的中后台前端解决方案如果喜欢就点个星星支持一下</p>
<p>
<a href='https://gitee.com/lolicode/scui' target="_blank">
<img src='https://gitee.com/lolicode/scui/badge/star.svg?theme=dark' alt='star' style="vertical-align: middle">
</a>
</p>
</el-card>
</template>
<script>
export default {
title: "关于项目",
icon: "el-icon-setting",
description: "点个星星支持一下",
data() {
return {
}
}
}
</script>
<style scoped>
.item-background p {color: #999;margin-top:10px;line-height: 1.8;}
</style>