Vue JS: add values from API JSon

i’m new developer in Vue JS.
below is my response body, and i wanted to add amount values that has is_paid:true with paid_amount only.. is there a way to do this in Vue JS?

{
    "payment" : {
        "installment_payment" : {
            "installments" : [
                          amount:"",
                                date: "",
                                is_paid: true,
                            },
                            {
                                amount: "",
                                date: "",
                                is_paid: false,

                            },
                            {
                                amount: "",
                                date: "",
                                is_paid: false,
                            },
                              {
                                amount: "",
                                date: "",
                                is_paid: true,
                            }
                        ],

                        remaining: ""

                    },
                    paid_amount: "",
                },]

}