You are reading docs for v1.3.1, click here for the latest version.
Progress

This is an overview of the most common usage of Progress. For more information about the available properties, methods, or events, head over to the complete API documentation for Progress.

<Progress> - визуальный компонент, отображающий полосу для индикации прогресса задачи.

See also: ActivityIndicator.


<Progress :value="currentProgress" />

Свойства

ИмяТипОписание
valueNumberПолучает или задает текущее значение полосы прогресса. Должно быть в диапазоне от 0 до maxValue.
maxValueNumberПолучает или задает максимальное значение полосы прогресса.
Значение по умолчанию: 100.

События

ИмяОписание
valueChangeСрабатывает при изменении свойства value.

Нативный компонент

AndroidiOS
android.widget.ProgressBar (indeterminate = false)UIProgressView
Contributors