📝(all): 补充文档
更新文档
This commit is contained in:
parent
8926bb6022
commit
615cb5ba7c
@ -112,7 +112,9 @@ const handleClick = function () {
|
||||
:type="
|
||||
props.isIndeterminate && isChecked
|
||||
? 'layui-icon-subtraction'
|
||||
: isChecked ? 'layui-icon-ok' : ''
|
||||
: isChecked
|
||||
? 'layui-icon-ok'
|
||||
: ''
|
||||
"
|
||||
></lay-icon>
|
||||
</div>
|
||||
|
@ -54,7 +54,6 @@ const emit = defineEmits([
|
||||
const slot = useSlots();
|
||||
const slots = slot.default && slot.default();
|
||||
|
||||
|
||||
const allChecked = ref(false);
|
||||
const hasChecked = ref(false);
|
||||
const tableDataSource = ref([...props.dataSource]);
|
||||
|
@ -62,7 +62,7 @@ export default {
|
||||
::: title 复选框组
|
||||
:::
|
||||
|
||||
::: demo
|
||||
::: demo 方便通过数组生成 checkbox 复选框。
|
||||
|
||||
<template>
|
||||
<lay-checkbox-group v-model="checkeds" @change="groupChange">
|
||||
@ -185,7 +185,7 @@ export default {
|
||||
::: title 半选状态
|
||||
:::
|
||||
|
||||
::: demo
|
||||
::: demo 在实现全选效果时,你可能会用到 indeterminate 属性。
|
||||
|
||||
<template>
|
||||
<lay-checkbox name="like" skin="primary" label="1" isIndeterminate="true" v-model="checked8">半选</lay-checkbox>
|
||||
|
@ -22,6 +22,7 @@
|
||||
<li>[修复] carousel 组件加载时无法获取 carousel-item 轮播项</li>
|
||||
<li>[修复] input-number 组件 modelValue 属性类型错误</li>
|
||||
<li>[修复] checkbox 组件 夜间模式 选中状态异常</li>
|
||||
<li>[优化] table 组件 checkedKeys 属性, 加入半选状态</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -1,8 +1,7 @@
|
||||
<template>
|
||||
<div style="margin-top: 60px; width: 80%" class="layui-container">
|
||||
<blockquote class="layui-quote layui-text" style="margin: 30px 0">
|
||||
尽管 layui-vue 中包含了这些组件,但因为它们受众群体广泛或应用广泛,特从
|
||||
layui-vue 中抽取出来个副本,可独立引用。我们也会对它们进行同步维护。
|
||||
<blockquote class="layui-quote layui-text" style="margin: 30px 0;letter-spacing: 2.5px;">
|
||||
以写作为工具,为道途,先帮助自己一程,再以自己的领悟帮助他人一程, 这是一种服务 - 庆山
|
||||
</blockquote>
|
||||
<fieldset class="layui-field layui-field-title">
|
||||
<legend style="margin-bottom: 20px; text-align: center">独立组件</legend>
|
||||
|
Loading…
Reference in New Issue
Block a user