computed vue js does not work with inertia I have a fresh installation of laravel with jetstream which uses inertia, and the computed properties do not work
computed: {
compupares: function () {
var sum = Number (this.form.t33) + Number (this.form.t34);
this.form.pares = sum;
return sum;
},