发布 0.3.7

This commit is contained in:
就眠儀式 2022-02-07 14:09:09 +08:00
parent 5c2fc10e95
commit 7e7e8e49a2
6 changed files with 7 additions and 10 deletions

View File

@ -16,8 +16,11 @@
<li> <li>
<h3>0.3.7 <span class="layui-badge-rim">2022-02-07</span></h3> <h3>0.3.7 <span class="layui-badge-rim">2022-02-07</span></h3>
<ul> <ul>
<li>[新增] index.less 样式文件, 支持一定程度的主题定制。</li>
<li>[新增] slider 滑块组件 setp 属性, 支持设置步长。</li> <li>[新增] slider 滑块组件 setp 属性, 支持设置步长。</li>
<li>[新增] index.less 样式文件, 支持一定程度的主题定制。</li>
<li>[移除] `defineProps`,`defineEmits` 两个全局宏命令引入,消除控制台警告。</li>
<li>[修复] menu 组件 inverted 属性不兼容 string 类型。</li>
<li>[修复] menu 组件 level 属性不兼容 string 类型。</li>
<li>[升级] icons-vue 1.0.4 版本。</li> <li>[升级] icons-vue 1.0.4 版本。</li>
<li>[升级] layer-vue 1.3.3 版本</li> <li>[升级] layer-vue 1.3.3 版本</li>
</ul> </ul>

View File

@ -4,10 +4,6 @@
::: describe Layui 支持一定程度的主题定制,以满足业务和品牌上多样化的视觉需求,包括但不限于主色、圆角、边框和部分组件的视觉定制。 ::: describe Layui 支持一定程度的主题定制,以满足业务和品牌上多样化的视觉需求,包括但不限于主色、圆角、边框和部分组件的视觉定制。
::: :::
| | |
| -- | -- |
| <img style="margin:50px;width:60%;" src="../../../src/assets/theme1.svg" /> | <img style="margin:50px;width:60%;" src="../../../src/assets/theme2.svg" /> |
::: describe 以下是一些最常用的通用变量,所有样式变量可以在 这里 找到。 ::: describe 以下是一些最常用的通用变量,所有样式变量可以在 这里 找到。
::: :::

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 21 KiB

View File

@ -1,6 +1,6 @@
{ {
"name": "@layui/layui-vue", "name": "@layui/layui-vue",
"version": "0.3.7-alpha.3", "version": "0.3.7",
"author": "SleepRite", "author": "SleepRite",
"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

@ -13,8 +13,8 @@ export interface LayMenuProps {
openKeys?: string[]; openKeys?: string[];
tree?: boolean; tree?: boolean;
theme?: string; theme?: string;
inverted?: boolean; inverted?: boolean | string;
level?: boolean; level?: boolean | string;
} }
const emit = defineEmits(["update:selectedKey", "update:openKeys"]); const emit = defineEmits(["update:selectedKey", "update:openKeys"]);