mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
60 lines
1.2 KiB
Vue
60 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import { useTranslate } from '@demo/use-translate';
|
|
|
|
const i18n = {
|
|
'zh-CN': {
|
|
title2: '置灰',
|
|
title3: '样式定制',
|
|
strokeWidth: '线条粗细',
|
|
},
|
|
'en-US': {
|
|
title2: 'Inactive',
|
|
title3: 'Custom Style',
|
|
strokeWidth: 'Stroke Width',
|
|
},
|
|
};
|
|
|
|
const t = useTranslate(i18n);
|
|
</script>
|
|
|
|
<template>
|
|
<demo-block :title="t('basicUsage')">
|
|
<van-progress :percentage="50" />
|
|
</demo-block>
|
|
|
|
<demo-block :title="t('strokeWidth')">
|
|
<van-progress :percentage="50" stroke-width="8" />
|
|
</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="#ee0a24" :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>
|
|
</template>
|
|
|
|
<style lang="less">
|
|
@import '../../style/var';
|
|
|
|
.demo-progress {
|
|
background: @white;
|
|
|
|
.van-progress {
|
|
margin: 20px;
|
|
|
|
&:first-of-type {
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|