I want to check if the value is empty or not.
Paid : <h6 v-for="pai in PaidAmount">
<b v-if="pai.billno==report.bill_no" >
{{pai.paid + report.paid}}</b>
</h6>
if {{pai.paid + report.paid}} is empty then i want to print only {{report.paid}}
pai.paid + report.paid == '' ? report.paid : 'something else'report.paid, wouldn't the test really just be ifpai.paidis empty?{{pai.paid + report.paid}}is empty then{{report.paid}}has to be empty as well - what do you want to print ?