comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
9 lines (7 loc) • 320 B
TypeScript
import { PropType, ExtractPropTypes } from 'vue';
import { RouteLocationRaw } from 'vue-router';
export declare const breadcrumbItemProps: {
readonly to: PropType<string | RouteLocationRaw>;
readonly active: BooleanConstructor;
};
export type BreadcrumbItemProps = ExtractPropTypes<typeof breadcrumbItemProps>;