Skip to content
On this page

LdLayout 布局容器

左中右三列布局,可隐藏左右两侧内容

使用

 <ld-layout :enableLeftSide="true" :enableRightSide="true">
    <template #left>
      左侧
    </template>
    <div>中间内容区域</div>
    <template #right>
      右侧
    </template>
</ld-layout>

props

属性类型默认值可选值说明
enableLeftSidebooleanfalsetrue|false是否启用左侧栏
enableRightSidebooleanfalsetrue|false是否启用右侧栏
leftSideWidthString|Number300-左侧宽度
rightSideWidthString|Number300-右侧宽度

slots

插槽名描述说明
default中间内容区域
left左侧内容
right右侧内容

根据 MIT 许可证发布。