Web Demo Mobile Demo Angular Demo Vue Demo React Demo
源代码
<template>
  <div>
	<h2>Custom Value</h2>
	<div style="margin-bottom:20px">
		<ProgressBar :value="40" :showValue="true"></ProgressBar>
	</div>
	<div style="margin-bottom:20px">
		<ProgressBar :value="70" :showValue="false">Processing 70%</ProgressBar>
	</div>
	<div style="margin-bottom:20px">
		<div style="text-align:right">50%</div>
		<ProgressBar :value="50" :showValue="false" barCls="c6" style="height:4px"></ProgressBar>
	</div>
  </div>
</template>

<script>
export default {};
</script>