DevExtreme Vue - Limit the Text Length

To limit the text length, assign an integer number to the maxLength option. By default, the text length is unlimited.

JavaScript
$(function() {
    $("#textAreaContainer").dxTextArea({
        maxLength: 200
    });
});
See Also