Could someone assist me with the syntax for displaying a variable from the database and rounding it beforehand?
<h2 class="txt-bold">Rating: {{roundHalf(ListOrg.rating)}}</h2>
computed: {
roundHalf: function(num) {
return Math.round(num * 2) / 2;
}
}