Reputation: 238
I have tried using the show-word-limit property of input element but the count didn't show up. Here's the code :
<el-input
type="textarea"
placeholder="Please input"
v-model="textarea"
maxlength="30"
show-word-limit
>
</el-input>
Upvotes: 1
Views: 450
Reputation: 238
I found out it was version issue.I upgraded it to the latest version and it worked. old version: 2.4.0 new version: 2.13.1
Upvotes: 1