如何在 Vue.js 中删除值中的逗号
2018-03-28
3166
2个回答
984815570
CertainPerformance
2018-03-28
只需使用
replace
替换
,
即可
displayValue(){
var displayValue = this.value || ""; //check if this.value is null
displayValue = String(displayValue).replace(/,/g, ""); //replace ,
}
gurvinder372
2018-03-28