UNPKG

element-plus

Version:

A Component Library for Vue 3

14 lines (12 loc) 276 B
import type { ExtractPropTypes } from 'vue' export const breadcrumbProps = { separator: { type: String, default: '/', }, separatorClass: { type: String, default: '', }, } as const export type BreadcrumbProps = ExtractPropTypes<typeof breadcrumbProps>