fix(TextEllipsis): failed to inherit attrs (#11621)

This commit is contained in:
neverland 2023-02-26 18:45:10 +08:00 committed by GitHub
parent c00d389f77
commit 47d1dd4148
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,8 +26,6 @@ export type TextEllipsisProps = ExtractPropTypes<typeof textEllipsisProps>;
export default defineComponent({
name,
inheritAttrs: false,
props: textEllipsisProps,
emits: ['clickAction'],
@ -120,9 +118,7 @@ export default defineComponent({
</span>
);
onMounted(() => {
calcEllipsised();
});
onMounted(calcEllipsised);
watch(() => [props.content, props.rows], calcEllipsised);