agile-utils
v0.0.4
Published
ChuxinFE - agile-utils
Downloads
2
Readme
API LIST
Array
|名称|作用| |:----|:----| |compose|把一个对象数组中某个属性相同的对象合并起来| |unique|数组去重|
Device
|名称|作用| |:----|:----| |mobileMsg|获取移动设备信息|
Dom
|名称|作用| |:----|:----| |fontSize|获取font-size| |scrollTop|获取滚动条距离顶部的位置|
Dom
|名称|作用| |:----|:----| |hasEmpty|判断是否有空的成员|
Pinyin
|名称|作用| |:----|:----| |pinyinStart|获取拼音的开头字母|
Pinyin
|名称|作用| |:----|:----| |pinyinStart|获取拼音的开头字母|
Time
|名称|作用| |:----|:----| |sleep|睡眠| |time2ymd|日期格式化为YYYY-MM-DD| |time2ymdhm|日期格式化为YYYY-MM-DD HH:mm| |time2ymdhms|日期格式化为YYYY-MM-DD HH:mm:ss|
Unit
|名称|作用| |:----|:----| |fen2yuan|分 -> 元| |yuan2fen|元 -> 分|
Quick start
Install
npm install agile-utils -S
Use
import _ from 'agile-utils'
_.fen2yuan(2000)
Use in Vue
<template>
<div>
<span v-text="fen2yuan(2000) + '元'"></span>
</div>
</template>
<script>
import { fen2yuan } from 'agile-utils'
export default {
data () {
return {
fen2yuan
}
}
}
</script>