Skip to content

Divider 分割线

介绍

用于将内容分隔为多个区域。

基础用法

默认渲染一条水平分割线。

html
<template>
  <nut-divider />
</template>

展示文本

通过插槽可以在分割线中间插入内容。

html
<template>
  <nut-divider>文本</nut-divider>
</template>

内容位置

通过 content-position 指定内容所在位置。

html
<template>
  <nut-divider content-position="left">文本</nut-divider>
  <nut-divider content-position="right">文本</nut-divider>
</template>

虚线

添加 dashed 属性使分割线渲染为虚线。

html
<template>
  <nut-divider dashed>文本</nut-divider>
</template>

自定义样式

可以直接通过 style 属性设置分割线的样式。

html
<template>
  <nut-divider :custom-style="{ color: '#1989fa', borderColor: '#1989fa', padding: '0 16px' }">文本</nut-divider>
</template>

垂直分割线

html
<template>
  <div :style="{ fontSize: '14px', marginLeft: '27px', color: '#909ca4' }">
    文本
    <nut-divider direction="vertical" />
    <a href="#" :custom-style="{ color: '#1989fa' }">链接</a>
    <nut-divider direction="vertical" />
    <a href="#" :custom-style="{ color: '#1989fa' }">链接</a>
  </div>
</template>

API

Props

参数说明类型默认值
dashed是否使用虚线booleanfalse
hairline是否使用 0.5px 线booleantrue
content-position内容位置,可选值为 leftrightstringcenter
direction水平还是垂直类型stringhorizontal

Slots

名称说明
default内容

主题定制

样式变量

组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 ConfigProvider 组件

名称默认值
--nut-divider-margin16px 0
--nut-divider-text-font-sizevar(--nut-font-size-2)
--nut-divider-text-color#909ca4
--nut-divider-line-height2px
--nut-divider-before-margin-right16px
--nut-divider-after-margin-left16px
--nut-divider-vertical-height12px
--nut-divider-vertical-top2px
--nut-divider-vertical-border-leftrgba(0, 0, 0, 0.06)
--nut-divider-vertical-margin0 8px

MIT Licensed