Closed
Description
URL
https://ionicframework.com/docs/api/input#input-counter
Issue Description
The maxlength
property of ion-input
expects a number, not a string.
The current Vue example provides maxlength as a string.
<!--current example-->
<ion-input ... maxlength="20"></ion-input>
<!--correct implementation-->
<ion-input ... :maxlength="20"></ion-input>