JewelryMall/admin/node_modules/element-plus/es/components/breadcrumb/src/breadcrumb-item.mjs
2026-02-14 19:29:15 +08:00

19 lines
472 B
JavaScript

import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
const breadcrumbItemProps = buildProps({
/**
* @description target route of the link, same as `to` of `vue-router`
*/
to: {
type: definePropType([String, Object]),
default: ""
},
/**
* @description if `true`, the navigation will not leave a history record
*/
replace: Boolean
});
export { breadcrumbItemProps };
//# sourceMappingURL=breadcrumb-item.mjs.map