Skip to content

Currency 货币

货币展示组件,支持符号、千分位、5 种尺寸。

基础用法

vue
<template>
  <parrot-currency :value="99.9" />
  <parrot-currency :value="12345.67" symbol="$" />
</template>

尺寸

vue
<parrot-currency :value="199" size="xs" />
<parrot-currency :value="199" size="md" />
<parrot-currency :value="199" size="xl" />

API

Props

属性类型默认值说明
valuenumber0金额
symbolstring'¥'货币符号
precisionnumber2小数位
sizestring'md'尺寸
colorstring'#ef4444'颜色

Released under the MIT License.