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
Add real-time word count display function in the lower right corner of Textarea
No response
The text was updated successfully, but these errors were encountered:
You could achieve this by doing something like this:
<div class="relative"> <UTextarea v-model="msg" /> <div class="absolute right-0"> {{ 15 - msg.length }} Chars remaining </div> </div>
Sorry, something went wrong.
55697e6
I've added a slot in the Textarea so you could even add this in absolute inside the textarea directly.
slot
Successfully merging a pull request may close this issue.
Description
Add real-time word count display function in the lower right corner of Textarea
Additional context
No response
The text was updated successfully, but these errors were encountered: