I would like to change display parameters for display own content in drupal view, I would like to display body with row text and limited characters (600)
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 service mt-4">
<div class="services__content">
<h3 class="display-3--title mt-1 text-center">{{ title }}</h3>
{{ body }}
{% if field_provide_view_more == 1 %}
{{ view_node }}
{% endif %}
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 service mt-4">
<div class="services__pic">
{{ field_image }}
</div>
</div>
</div>
I found the solution myself.