Merge branch 'next' of https://gitee.com/layui/layui-vue into next

This commit is contained in:
sight 2022-06-03 13:52:49 +08:00
commit bfae086a8e
9 changed files with 45 additions and 21 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@layui/layui-vue", "name": "@layui/layui-vue",
"version": "1.1.4", "version": "1.1.5-alpha.2",
"author": "就眠儀式", "author": "就眠儀式",
"license": "MIT", "license": "MIT",
"description": "a component library for Vue 3 base on layui-vue", "description": "a component library for Vue 3 base on layui-vue",

View File

@ -162,6 +162,9 @@
span { span {
display: none; display: none;
} }
.layui-nav-item > a {
text-overflow: clip;
}
.layui-nav-more { .layui-nav-more {
display: none; display: none;
} }

View File

@ -133,7 +133,7 @@
} }
.layui-tab-brief>.layui-tab-head{ .layui-tab-brief>.layui-tab-head{
background-color: #FFF; background-color: transparent;
} }
.layui-tab-brief>.layui-tab-head>.layui-tab-title .layui-this { .layui-tab-brief>.layui-tab-head>.layui-tab-title .layui-this {
@ -344,8 +344,9 @@
box-sizing: border-box; box-sizing: border-box;
pointer-events: none; pointer-events: none;
} }
.is-top .layui-tab-active-bar{ .is-top .layui-tab-active-bar{
bottom: 0px; bottom: -1px;
height: 1.5px; height: 1.5px;
} }

View File

@ -13,7 +13,7 @@
content="layui,layui-vue,vue,layer,layer-vue,ui,components" content="layui,layui-vue,vue,layer,layer-vue,ui,components"
/> />
<link rel="icon" href="/favicon.ico" /> <link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@docsearch/css@3" /> <link rel="stylesheet" href="/docsearch/index.css" />
<title>Layui - Vue 开源前端 UI 框架</title> <title>Layui - Vue 开源前端 UI 框架</title>
<!--preload-links--> <!--preload-links-->
</head> </head>
@ -23,6 +23,6 @@
<!--app-html--> <!--app-html-->
</div> </div>
<script type="module" src="/src/entry-client.ts"></script> <script type="module" src="/src/entry-client.ts"></script>
<script src="https://cdn.jsdelivr.net/npm/@docsearch/js@3"></script> <script src="/docsearch/index.js"></script>
</body> </body>
</html> </html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -2,21 +2,19 @@
::: :::
<br> <br>
<p>
<p> <a href="http://layui-vue.pearadmin.com" style="margin-left:30px;">
<a href="http://layui-vue.pearadmin.com" style="margin-left:30px;"> <img src="../../../assets/layui-logo.png" alt="layui" width="105" style="border-radius:12px;">
<img src="../../../assets/layui-logo.png" alt="layui" width="105" style="border-radius:12px;"> </a>
</a> <span style="font-size:32px;color:#e2e2e2;margin:30px;">+</span>
<span style="font-size:32px;color:#e2e2e2;margin:30px;">+</span> <a href="http://layui-vue.pearadmin.com">
<a href="http://layui-vue.pearadmin.com"> <img src="https://qn.antdv.com/vue.png" alt="layui" width="105" style="border-radius:12px;">
<img src="https://qn.antdv.com/vue.png" alt="layui" width="105" style="border-radius:12px;"> </a>
</a> <span style="font-size:32px;color:#e2e2e2;margin:30px;">=</span>
<span style="font-size:32px;color:#e2e2e2;margin:30px;">=</span> <a href="http://layui-vue.pearadmin.com">
<a href="http://layui-vue.pearadmin.com"> <img src="../../../assets/logo.jpg" alt="layui" width="105" style="border-radius:12px;">
<img src="../../../assets/logo.jpg" alt="layui" width="105" style="border-radius:12px;"> </a>
</a> </p>
</p>
<br> <br>
::: title 使用包管理 ::: title 使用包管理

View File

@ -4,4 +4,8 @@
::: describe 以下整理了一些 Layui Vue 社区常见的问题和官方答复,在提问之前建议找找有没有类似的问题。 ::: describe 以下整理了一些 Layui Vue 社区常见的问题和官方答复,在提问之前建议找找有没有类似的问题。
::: :::
::: describe 若你想在 DOM 中直接书写 Vue 模板Vue 则必须从 DOM 中获取模板字符串。因为浏览器的原生 HTML 解析行为,因此有一些需要注意的事项。
:::
::: describe <a>https://staging-cn.vuejs.org/guide/essentials/component-basics.html#dom-template-parsing-caveats</a >
:::

View File

@ -49,4 +49,5 @@ const themeVariable = {
--global-neutral-color-7: #cccccc; // 辅助色-7 --global-neutral-color-7: #cccccc; // 辅助色-7
--global-neutral-color-8: #c2c2c2; // 辅助色-8 --global-neutral-color-8: #c2c2c2; // 辅助色-8
``` ```