100 lines
3.4 KiB
Vue
100 lines
3.4 KiB
Vue
|
<template>
|
|||
|
<el-card class="layout-home">
|
|||
|
<h2>介绍</h2>
|
|||
|
<p>基于Vue3、TypeScript、Element Plus、Vue Router、Pinia、Axios、i18n、Vite等开发的后台管理</p>
|
|||
|
<p>目前已实现maku-admin后端接口的有:【MakuBoot】和【MakuCloud】2个后端开源项目。</p>
|
|||
|
<p>
|
|||
|
演示环境:<el-link href="https://demo.maku.net/maku-admin" :underline="false" type="primary" target="_blank">
|
|||
|
https://demo.maku.net/maku-admin</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
开发文档:<el-link href="https://maku.net/docs/maku-admin" :underline="false" type="primary" target="_blank">
|
|||
|
https://maku.net/docs/maku-admin</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
Gitee仓库:<el-link href="https://gitee.com/makunet/maku-admin" :underline="false" type="primary" target="_blank">
|
|||
|
https://gitee.com/makunet/maku-admin</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
Github仓库:<el-link href="https://github.com/makunet/maku-admin" :underline="false" type="primary" target="_blank">
|
|||
|
https://github.com/makunet/maku-admin</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
<br />
|
|||
|
|
|||
|
<h2>MakuBoot</h2>
|
|||
|
<p>
|
|||
|
Gitee仓库:<el-link href="https://gitee.com/makunet/maku-boot" :underline="false" type="primary" target="_blank">
|
|||
|
https://gitee.com/makunet/maku-boot</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
Github仓库:<el-link href="https://github.com/makunet/maku-boot" :underline="false" type="primary" target="_blank">
|
|||
|
https://github.com/makunet/maku-boot</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
|
|||
|
<p>
|
|||
|
演示环境:<el-link href="https://demo.maku.net/maku-boot" :underline="false" type="primary" target="_blank">
|
|||
|
https://demo.maku.net/maku-boot</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
开发文档:<el-link href="https://maku.net/docs/maku-boot" :underline="false" type="primary" target="_blank">
|
|||
|
https://maku.net/docs/maku-boot</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
<br />
|
|||
|
|
|||
|
<h2>MakuCloud</h2>
|
|||
|
<p>
|
|||
|
Gitee仓库:<el-link href="https://gitee.com/makunet/maku-cloud" :underline="false" type="primary" target="_blank">
|
|||
|
https://gitee.com/makunet/maku-cloud</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
Github仓库:<el-link href="https://github.com/makunet/maku-cloud" :underline="false" type="primary" target="_blank">
|
|||
|
https://github.com/makunet/maku-cloud</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
演示环境:<el-link href="https://demo.maku.net/maku-cloud" :underline="false" type="primary" target="_blank">
|
|||
|
https://demo.maku.net/maku-cloud</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
开发文档:<el-link href="https://maku.net/docs/maku-cloud" :underline="false" type="primary" target="_blank">
|
|||
|
https://maku.net/docs/maku-cloud</el-link
|
|||
|
>
|
|||
|
</p>
|
|||
|
<br />
|
|||
|
|
|||
|
<h2>微信交流群</h2>
|
|||
|
<p>为了更好的交流,我们新提供了微信交流群,需扫描下面的二维码,关注公众号,回复【加群】,根据提示信息,作者会拉你进群的,感谢配合!</p>
|
|||
|
<el-image src="https://maku.net/app/img/qrcode.jpg" />
|
|||
|
<br />
|
|||
|
|
|||
|
<h2>支持</h2>
|
|||
|
<p>
|
|||
|
如果觉得框架还不错,或者已经在使用了,希望你可以去
|
|||
|
<el-link href="https://github.com/makunet" :underline="false" type="primary" target="_blank">Github</el-link> 或
|
|||
|
<el-link href="https://gitee.com/makunet" :underline="false" type="primary" target="_blank">Gitee</el-link>
|
|||
|
帮作者点个 ⭐ Star,这将是对作者极大的鼓励与支持。
|
|||
|
</p>
|
|||
|
</el-card>
|
|||
|
</template>
|
|||
|
|
|||
|
<style scoped>
|
|||
|
.layout-home {
|
|||
|
line-height: 2;
|
|||
|
font-size: 15px;
|
|||
|
}
|
|||
|
|
|||
|
.layout-home h2 {
|
|||
|
margin: 6px 0;
|
|||
|
}
|
|||
|
</style>
|