mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
61 lines
1.1 KiB
Vue
61 lines
1.1 KiB
Vue
<template>
|
|
<demo-section>
|
|
<demo-block :title="$t('basicUsage')">
|
|
<van-progress :percentage="50" />
|
|
</demo-block>
|
|
|
|
<demo-block :title="$t('title2')">
|
|
<van-progress
|
|
inactive
|
|
:percentage="50"
|
|
/>
|
|
</demo-block>
|
|
|
|
<demo-block :title="$t('title3')">
|
|
<van-progress
|
|
color="#f2826a"
|
|
:percentage="25"
|
|
:pivot-text="$t('orange')"
|
|
/>
|
|
<van-progress
|
|
color="#f44"
|
|
:percentage="50"
|
|
:pivot-text="$t('red')"
|
|
/>
|
|
<van-progress
|
|
:percentage="75"
|
|
:pivot-text="$t('purple')"
|
|
pivot-color="#7232dd"
|
|
color="linear-gradient(to right, #be99ff, #7232dd)"
|
|
/>
|
|
</demo-block>
|
|
</demo-section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
i18n: {
|
|
'zh-CN': {
|
|
title2: '置灰',
|
|
title3: '样式定制'
|
|
},
|
|
'en-US': {
|
|
title2: 'Inactive',
|
|
title3: 'Custom Style'
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.demo-progress {
|
|
.van-progress {
|
|
margin: 20px;
|
|
|
|
&:first-of-type {
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|