npm install agile-utils -S
import �_ from 'agile-utils'
_.fen2yuan(2000)
<template>
<div>
<span v-text="fen2yuan(2000) + '元'"></span>
</div>
</template>
<script>
import { fen2yuan } from 'agile-utils'
export default {
data () {
return {
fen2yuan
}
}
}
</script>