agiles-tools
v0.0.1
Published
ChuxinFE - agiles-tools
Downloads
2
Readme
Quick start
Install
npm install agiles-tools -S
Use
import _ from 'agiles-tools'
_.fen2yuan(2000)
Use in Vue
<template>
<div>
<span v-text="fen2yuan(2000) + '元'"></span>
</div>
</template>
<script>
import _ from 'agiles-tools'
export default {
data () {
return {
fen2yuan: _.fen2yuan
}
}
}
</script>