fix: fix spelling of words in code. (#6839)

pull/6871/head
No Two 2023-08-18 11:08:47 +08:00 committed by GitHub
parent 141f0100d2
commit 9c3bf46108
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -185,8 +185,8 @@ export const tableProps = () => {
}; };
}; };
const InteralTable = defineComponent({ const InternalTable = defineComponent({
name: 'InteralTable', name: 'InternalTable',
inheritAttrs: false, inheritAttrs: false,
props: initDefaultProps( props: initDefaultProps(
{ {
@ -676,7 +676,7 @@ const Table = defineComponent({
return () => { return () => {
const columns = props.columns || convertChildrenToColumns(slots.default?.()); const columns = props.columns || convertChildrenToColumns(slots.default?.());
return ( return (
<InteralTable <InternalTable
ref={table} ref={table}
{...attrs} {...attrs}
{...props} {...props}