♻️(document): 调整文档结构
This commit is contained in:
118
package/document-component/src/view/resource.vue
Normal file
118
package/document-component/src/view/resource.vue
Normal file
@@ -0,0 +1,118 @@
|
||||
<template>
|
||||
<div style="margin-top: 60px; width: 80%" class="layui-container">
|
||||
<blockquote
|
||||
class="layui-quote layui-text"
|
||||
style="margin: 30px 0; letter-spacing: 1px"
|
||||
>
|
||||
以写作为工具,为道途,先帮助自己一程,再以自己的领悟帮助他人一程,
|
||||
这是一种服务 - 庆山
|
||||
</blockquote>
|
||||
<fieldset class="layui-field layui-field-title">
|
||||
<legend style="margin-bottom: 20px; text-align: center">独立组件</legend>
|
||||
<div class="layui-field-box">
|
||||
<ul class="layui-row layui-col-space6">
|
||||
<li class="layui-col-sm12">
|
||||
<div class="alone">
|
||||
<a
|
||||
href="https://gitee.com/layui/layui-vue/tree/next/package/layer"
|
||||
target="_blank"
|
||||
>layer - vue<cite>通用型弹出层组件</cite></a
|
||||
>
|
||||
</div>
|
||||
</li>
|
||||
<li class="layui-col-sm12">
|
||||
<div class="alone">
|
||||
<a
|
||||
href="https://gitee.com/layui/layui-vue/tree/next/package/icons"
|
||||
target="_blank"
|
||||
>icons - vue<cite>图标组件化解决方案</cite></a
|
||||
>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</fieldset>
|
||||
<fieldset class="layui-field layui-field-title">
|
||||
<legend style="margin-bottom: 20px; text-align: center">后台模板</legend>
|
||||
<div class="layui-field-box">
|
||||
<ul class="layui-row layui-col-space6">
|
||||
<li class="layui-col-sm24">
|
||||
<div class="alone">
|
||||
<a
|
||||
href="https://gitee.com/layui-vue/layui-vue-admin"
|
||||
target="_blank"
|
||||
>layui - admin<cite>通用型 vue 3.0 后台模板</cite></a
|
||||
>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</fieldset>
|
||||
<fieldset class="layui-field layui-field-title">
|
||||
<legend style="margin-bottom: 20px; text-align: center">设计资源</legend>
|
||||
<div class="layui-field-box">
|
||||
<ul class="layui-row layui-col-space6">
|
||||
<li class="layui-col-sm24">
|
||||
<div class="alone">
|
||||
<a
|
||||
href="https://www.axured.cn/assets/axurefiles/d959191ea7d3a46378456fbd7d72f44f_215/start.html?#g=1&p=%E4%BD%9C%E5%93%81%E4%BB%8B%E7%BB%8D"
|
||||
target="_blank"
|
||||
>layui - axure<cite>基于 layui 的 axure 原型库</cite></a
|
||||
>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</fieldset>
|
||||
<fieldset class="layui-field layui-field-title">
|
||||
<legend style="margin-bottom: 20px; text-align: center">开发插件</legend>
|
||||
<div class="layui-field-box">
|
||||
<ul class="layui-row layui-col-space6">
|
||||
<li class="layui-col-sm24">
|
||||
<div class="alone">
|
||||
<a
|
||||
href="https://marketplace.visualstudio.com/items?itemName=morning-star.layui-vue-helper"
|
||||
target="_blank"
|
||||
>layui - helper<cite> Visual Studio Code 辅助开发插件</cite></a
|
||||
>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
<div class="footer footer-index">
|
||||
<p>Released under the <a href="/index.html">MIT License</a>.</p>
|
||||
<p>Copyright © 2021-2022 layui-vue.com</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
@import "@layui/layui-vue/es/container/index.css";
|
||||
@import "@layui/layui-vue/es/quote/index.css";
|
||||
@import "@layui/layui-vue/es/field/index.css";
|
||||
.alone {
|
||||
text-align: center;
|
||||
background-color: #009688;
|
||||
color: #fff;
|
||||
font-weight: 300;
|
||||
transition: all 0.3s;
|
||||
-webkit-transition: all 0.3s;
|
||||
}
|
||||
.alone:hover a {
|
||||
color: white !important;
|
||||
background-color: #5fb878;
|
||||
}
|
||||
.alone a {
|
||||
display: block;
|
||||
padding: 50px 20px;
|
||||
color: #fff;
|
||||
font-size: 30px;
|
||||
}
|
||||
.alone a cite {
|
||||
display: block;
|
||||
padding-top: 10px;
|
||||
font-size: 14px;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user