See the Pen Vue.jsで税抜きと税込みを計算する by takapen (@takapen) on CodePen.
税込みの場合 {{ taxPrice }}円
税抜きの場合 {{ notTacPrice }}円
new Vue({
el:'#app',
data:{
price:'108'
},
computed:{
taxPrice:function(){
return Math.ceil(this.price*108/100);
},
notTacPrice:function(){
return Math.ceil(this.price/108*100);
}
}
});