Vue计算加减法和取小数点后两位

计算加法

  methods: {
            subscript(){
                    this.a = 30,
                    this.b = 30,
                    this.jieguo = parseInt(this.a) + parseInt(this.b)
                    //parseInt 取整
            },

计算减法

  methods: {
            subscript(){
                    this.a = 30,
                    this.b = 30,
                    this.jieguo = parseInt(this.a) - parseInt(this.b)
                    //parseInt 取整
            },

乘法改成 * 除法 /

取小数点后两位 toFixed(2)方法

  subscript(){
                    this.a = 30,
                    this.b = 30,
                    this.jieguo = Number ((this.a-this.b).toFixed(2))
            },

直接完工希望对你有所帮助,
欢迎大家进群进行技术性的探讨, 群号:954314851
Vue计算加减法和取小数点后两位

上一篇:c – 重载赋值运算符用下标运算符


下一篇:版本控制-搭建git服务器