/
githubmirror
/
vuetify
Обзор
Документация
Войти
/
githubmirror
/
vuetify
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/docs/src/examples/v-progress-linear/prop-reverse.vue
36 строк
676 B
John Leider
chore: add vue/attributes-order eslint rule
29 фев 2024, 07:06
29 фев 2024, 07:06
65aff8f
Код
Авторство
О чём код?
<template> <div> <v-progress-linear color="pink" model-value="15" reverse ></v-progress-linear> <br> <v-progress-linear color="lime" indeterminate reverse ></v-progress-linear> <br> <v-progress-linear buffer-value="55" color="success" model-value="30" reverse streams ></v-progress-linear> <br> <p>In specific cases you may want progress to display in left-to-right mode regardless of the application direction (LTR or RTL):</p> <v-progress-linear :reverse="$vuetify.locale.isRtl" model-value="15" ></v-progress-linear> </div> </template>