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

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>
);