Skip to content
On this page

Breadcrumb 面包屑

显示当前页面的路径,快速返回之前的任意页面。

基础用法

Details/
html
<script setup>
  import { ref } from 'vue'
  const bc = ref([
    {
      command: 'home',
      label: 'Home',
      children: [
        {
          command: 'about',
          label: 'About'
        }
        // ...More
      ]
    }
  ])
</script>
<os-breadcrumb :data="bc"></os-breadcrumb>

图标分隔符

Details
html
<os-breadcrumb
:data="bc"
separator-icon="os-icon-next">
</os-breadcrumb>

Released under the MIT License.