在main.js 里面给Vue对象添加方法。

来一个示例代码:  

import Vue from 'vue'
import App from './App'

Vue.prototype.num_to_str_liangwei = (val = 0) => {
	return (val / 100).toFixed(2)
}
App.mpType = 'app'

const app = new Vue({
    ...App
})
app.$mount()

代码添加的方法讲解:

num_to_str_liangwei 访问,它接收一个以分为单位的数字,返回元。 格式为保留小数点后两位。0.00

 

在Vue 的组件中使用该方法示例:

var money = 120;  // 单位为分,实际是1.2元;

console.log('money ',this.num_to_str_liangwei(money));

// 打印结果:   money 1.20

 

 

Logo

前往低代码交流专区

更多推荐