mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-11-30 18:27:40 +08:00
fix(components): fix typo (#3561)
This commit is contained in:
parent
3e24580a9f
commit
a5438d3545
@ -1,6 +1,6 @@
|
||||
import type { ExtractPropTypes } from 'vue'
|
||||
|
||||
export const breadcurmbProps = {
|
||||
export const breadcrumbProps = {
|
||||
separator: {
|
||||
type: String,
|
||||
default: '/',
|
||||
@ -10,4 +10,4 @@ export const breadcurmbProps = {
|
||||
default: '',
|
||||
},
|
||||
} as const
|
||||
export type BreadcrumbProps = ExtractPropTypes<typeof breadcurmbProps>
|
||||
export type BreadcrumbProps = ExtractPropTypes<typeof breadcrumbProps>
|
||||
|
@ -13,11 +13,11 @@
|
||||
import { defineComponent, provide, ref, onMounted } from 'vue'
|
||||
import { elBreadcrumbKey } from '@element-plus/tokens'
|
||||
|
||||
import { breadcurmbProps } from './breadcrumb'
|
||||
import { breadcrumbProps } from './breadcrumb'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ElBreadcrumb',
|
||||
props: breadcurmbProps,
|
||||
props: breadcrumbProps,
|
||||
|
||||
setup(props) {
|
||||
const breadcrumb = ref<HTMLDivElement>()
|
||||
|
Loading…
Reference in New Issue
Block a user