ExSector

块状导航

Version: 1.0.0

Props

Prop nameDescriptionTypeValuesDefault
color自定义颜色stringgreen, blue, orange, red"green"
height高度number|string-"100px"
title标题string-""
subtitle副标题string-""

示例


普通的标题有描述有slot的写法红色与蓝色
<ExSector title="普通的标题" subtitle="有描述" />
<ExSector title="有slot的写法" color="blue">
    <template #subtitle>
        <view style="color: red">红色</view>与蓝色
    </template>
</ExSector>