mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* refactor(components): [el-breadcumb] icon * refactor(components): el-tabs icon * refactor(components): color picker icon * refactor(components): menus icon * refactor(components): loading spinner icon * fix(components): panel-data-pick elicon import * refactor(components): dropdown item icon * refactor(components): tabs plus icon * fix: message & tabs icon test * fix(components): breadcrumb docs * fix(components): colorPicker docs * fix(components): loading docs Co-authored-by: imswk <syfzxx@vip.qq.com>
16 lines
416 B
TypeScript
16 lines
416 B
TypeScript
import { buildProps, definePropType } from '@element-plus/utils/props'
|
|
|
|
import type { ExtractPropTypes, Component } from 'vue'
|
|
|
|
export const breadcrumbProps = buildProps({
|
|
separator: {
|
|
type: String,
|
|
default: '/',
|
|
},
|
|
separatorIcon: {
|
|
type: definePropType<string | Component>([String, Object]),
|
|
default: '',
|
|
},
|
|
} as const)
|
|
export type BreadcrumbProps = ExtractPropTypes<typeof breadcrumbProps>
|