Skip to content
On this page

分割线 Divider

划分空间的线,用于隔开内容。

基本使用

Show Code
vue
<template>
  <n-divider></n-divider>
</template>

<script setup lang="ts"></script>

<style lang="less" scoped></style>

带文字 指定文字位置

可选择文字位置 'left' | 'center' | 'right'

Center Text
Left Text
Right Text
Show Code
vue
<template>
  <n-divider>Center Text</n-divider>
  <n-divider position="left" :position-margin="120">Left Text</n-divider>
  <n-divider position="right" :position-margin="120">Right Text</n-divider>
</template>

虚线

Center Text
Show Code
vue
<template>
  <n-divider dashed>Center Text</n-divider>
</template>

自定义线宽

线宽3px

Center Text
Show Code
vue
<template>
  <n-divider :borderWidth="3">Center Text</n-divider>
</template>

API

参数说明类型默认值
dashed是否为虚线booleanfalse
position分割线标题的位置'left''center'
positionMargin标题和最近 left/right 边框之间的距离,去除了分割线,同时 position 必须为 left 或 rightstringnumber
borderWidth分割线宽度,单位pxnumber1

Released under the MIT License.