36 lines
1.1 KiB
Vue
Executable File
36 lines
1.1 KiB
Vue
Executable File
<template>
|
|
<div role="progressbar" :class="cx('root')" aria-valuemin="0" :aria-valuenow="value" aria-valuemax="100" v-bind="ptm('root')">
|
|
<div v-if="determinate" :class="cx('value')" :style="progressStyle" v-bind="ptm('value')">
|
|
<div v-if="value != null && value !== 0 && showValue" :class="cx('label')" v-bind="ptm('label')">
|
|
<slot>{{ value + '%' }}</slot>
|
|
</div>
|
|
</div>
|
|
<div v-if="indeterminate" :class="cx('container')" v-bind="ptm('container')">
|
|
<div :class="cx('value')" v-bind="ptm('value')"></div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseProgressBar from './BaseProgressBar.vue';
|
|
|
|
export default {
|
|
name: 'ProgressBar',
|
|
extends: BaseProgressBar,
|
|
computed: {
|
|
progressStyle() {
|
|
return {
|
|
width: this.value + '%',
|
|
display: 'flex'
|
|
};
|
|
},
|
|
indeterminate() {
|
|
return this.mode === 'indeterminate';
|
|
},
|
|
determinate() {
|
|
return this.mode === 'determinate';
|
|
}
|
|
}
|
|
};
|
|
</script>
|