I want to display the variable from the database and round it before. Can you help me about syntax for this.
<h2 class="txt-bold">Rating: {{roundHalf(ListOrg.rating)}}</h2>
computed: {
roundHalf: function(num) {
return Math.round(num * 2) / 2;
}
}