How to use computed or watch of vue for calculation

in vue, how to use computed to calculate
for example, unit price * (1 + tax rate) = price including tax
when I enter a unit price and tax rate, I can calculate the price including tax, and when I enter a price and tax rate, I can calculate the unit price without tax

depressed, tossing about, writing things always conflict
how to write
computed:

clipboard.png

watch:

clipboard.png

Mar.24,2021

computed
https://cn.vuejs.org/v2/api/-sharp.

watch
https://cn.vuejs.org/v2/api/-sharp.


put the changes to those two values in watch into computed. This is already an endless loop


trigger timing. Do not use the @ keyup and @ change events of the computed and watch
binding input boxes.

Menu