docs: 更新日志
This commit is contained in:
parent
00ff42ada9
commit
85a00c2515
@ -315,7 +315,12 @@ onMounted(() => {
|
|||||||
<!-- 插 槽 Column -->
|
<!-- 插 槽 Column -->
|
||||||
<template v-if="column.customSlot">
|
<template v-if="column.customSlot">
|
||||||
<td class="layui-table-cell">
|
<td class="layui-table-cell">
|
||||||
<div :style="{ width: column.width,textAlign: column.align }">
|
<div
|
||||||
|
:style="{
|
||||||
|
width: column.width,
|
||||||
|
textAlign: column.align,
|
||||||
|
}"
|
||||||
|
>
|
||||||
<slot :name="column.customSlot" :data="data"></slot>
|
<slot :name="column.customSlot" :data="data"></slot>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
@ -327,7 +332,12 @@ onMounted(() => {
|
|||||||
:key="value"
|
:key="value"
|
||||||
>
|
>
|
||||||
<td v-if="column.key == key" class="layui-table-cell">
|
<td v-if="column.key == key" class="layui-table-cell">
|
||||||
<div :style="{ width: column.width, textAlign: column.align }">
|
<div
|
||||||
|
:style="{
|
||||||
|
width: column.width,
|
||||||
|
textAlign: column.align,
|
||||||
|
}"
|
||||||
|
>
|
||||||
<span> {{ value }} </span>
|
<span> {{ value }} </span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
@ -18,6 +18,8 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li>[新增] empty 组件 image 插槽, 支持自定义 image。</li>
|
<li>[新增] empty 组件 image 插槽, 支持自定义 image。</li>
|
||||||
<li>[新增] badge 组件 ripple 属性, 开启水波纹动画, 仅适用于 type 为 dot 时。</li>
|
<li>[新增] badge 组件 ripple 属性, 开启水波纹动画, 仅适用于 type 为 dot 时。</li>
|
||||||
|
<li>[新增] table 组件 column 配置 align 属性, 支持 left center right 对齐方式。</li>
|
||||||
|
<li>[修复] table 组件 column 存在 1px 宽度误差。</li>
|
||||||
<li>[其他] ...</li>
|
<li>[其他] ...</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user