We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
想要的效果是最多只能展示三行,但是在 :max-lines=5的情况下最终只能展示一行,改成:max-lines=5才能最多展示三行
The text was updated successfully, but these errors were encountered:
<div class="summary_area"> <TextClamp :max-lines=5 autoresize :text="text" > <template #after="{ toggle, expanded, clamped }"> <div v-if="expanded || clamped" class="toggle btn btn-sm" @click="toggle" > {{ clamped ? "展开" : '收起' }} </div> </template> </TextClamp>
Sorry, something went wrong.
before, after 需要使用行内元素
No branches or pull requests
想要的效果是最多只能展示三行,但是在 :max-lines=5的情况下最终只能展示一行,改成:max-lines=5才能最多展示三行
The text was updated successfully, but these errors were encountered: