<script setup lang="ts">
import { Breadcrumb } from "@reglow/reui";
import { Home } from "lucide-vue-next";
import { h } from "vue";
const items = [
{ title: "首页", href: "/", icon: h(Home) },
{ title: "应用中心", href: "/apps" },
{ title: "应用详情" },
];
</script>
<template>
<Breadcrumb :items="items" />
<!-- 自定义分隔符 -->
<Breadcrumb :items="items" separator=">" />
</template>