# numberForma

处理数字成统一本地字符串表示或单位为万

# 初始化

在需要使用的vue文件中引入

import { numberForma } from '@xiaoe/js-tools'
1

# 传参

/**
 * @param {string/number} val 需要处理的数值
 */
1
2
3

# 效果

example: numberFormat(200000)
return:20.00万

let num = numberFormat(200000);
1