Skip to content

Breadcrumb 面包屑

用于展示页面层级路径。

js
import { Breadcrumb } from '@kupola/components/breadcrumb'

const breadcrumb = Breadcrumb({
  items: [
    { label: '首页', href: '/' },
    { label: '系统管理', href: '/system' },
    { label: '用户管理' },
  ],
})

document.body.appendChild(breadcrumb.element)

常用选项

选项说明
items路径项
separator分隔符

路径项

字段说明
label显示文本
href链接地址