2021-12-10 16:35:18 +00:00
|
|
|
|
<template>
|
|
|
|
|
<div
|
|
|
|
|
style="margin-top: 60px; height: 100%; width: 80%"
|
|
|
|
|
class="layui-container"
|
|
|
|
|
>
|
2022-02-11 10:28:35 +00:00
|
|
|
|
<blockquote class="layui-quote layui-text" style="margin: 30px 0">
|
2022-02-07 05:42:38 +00:00
|
|
|
|
尽管 layui-vue 中包含了这些组件,但因为它们受众群体广泛或应用广泛,特从 layui-vue
|
2021-12-10 16:35:18 +00:00
|
|
|
|
中抽取出来个副本,可独立引用。我们也会对它们进行同步维护。
|
|
|
|
|
</blockquote>
|
2022-02-11 10:28:35 +00:00
|
|
|
|
<fieldset class="layui-field layui-field-title">
|
2021-12-10 16:35:18 +00:00
|
|
|
|
<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">
|
2022-03-08 15:11:26 +00:00
|
|
|
|
<a href="http://layer.layui-vue.com" target="_blank"
|
2021-12-12 10:55:04 +00:00
|
|
|
|
>layer - vue<cite>通用型弹出层组件</cite></a
|
2021-12-10 16:35:18 +00:00
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="layui-col-sm12">
|
|
|
|
|
<div class="alone">
|
|
|
|
|
<a href="https://gitee.com/layui-vue/icons-vue" target="_blank"
|
2021-12-12 10:55:04 +00:00
|
|
|
|
>icons - vue<cite>图标组件化解决方案</cite></a
|
2021-12-10 16:35:18 +00:00
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</fieldset>
|
2022-02-11 10:28:35 +00:00
|
|
|
|
<fieldset class="layui-field layui-field-title">
|
2022-01-09 10:09:54 +00:00
|
|
|
|
<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>
|
2022-02-11 10:28:35 +00:00
|
|
|
|
<fieldset class="layui-field layui-field-title">
|
2022-02-10 01:44:07 +00:00
|
|
|
|
<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"
|
2022-02-16 02:25:47 +00:00
|
|
|
|
>layui - axure<cite>基于 layui 的 axure 原型库</cite></a
|
2022-02-10 01:44:07 +00:00
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</fieldset>
|
2021-12-10 16:35:18 +00:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.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;
|
2021-12-12 10:55:04 +00:00
|
|
|
|
letter-spacing:2px;
|
2021-12-10 16:35:18 +00:00
|
|
|
|
}
|
|
|
|
|
</style>
|