chore(TextEllipsis): reuse actionText variable (#12138)

This commit is contained in:
neverland 2023-07-31 21:39:20 +08:00 committed by GitHub
parent c95d59e303
commit 8b3ee8723b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,7 +190,7 @@ export default defineComponent({
const renderAction = () => (
<span class={bem('action')} onClick={onClickAction}>
{expanded.value ? props.collapseText : props.expandText}
{actionText.value}
</span>
);