代碼如下:
<el-input v-model="famount" placeholder="請輸入內容" @keyup.native="number"></el-input>
methods:{
number(){
this.famount=this.famount.replace(/[^\.\d]/g,'');
this.famount=this.famount.replace('.','');
}
}