forked from opentiny/tiny-vue
42 lines
718 B
Vue
42 lines
718 B
Vue
<template>
|
|
<div>
|
|
<tiny-progress
|
|
class="progress"
|
|
:text-inside="true"
|
|
:stroke-width="24"
|
|
:percentage="100"
|
|
status="success"
|
|
></tiny-progress>
|
|
<br />
|
|
<tiny-progress
|
|
class="progress"
|
|
:text-inside="true"
|
|
:stroke-width="22"
|
|
:percentage="80"
|
|
status="warning"
|
|
></tiny-progress>
|
|
<br />
|
|
<tiny-progress
|
|
class="progress"
|
|
:text-inside="true"
|
|
:stroke-width="20"
|
|
:percentage="50"
|
|
status="exception"
|
|
></tiny-progress>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { Progress } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyProgress: Progress
|
|
},
|
|
|
|
data() {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|